-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RabbitMQ v4.0.4 and Memcached v1.6.33
Signed-off-by: Muhammad Raisul Islam Evan <[email protected]>
- Loading branch information
1 parent
4b9b27c
commit e33b553
Showing
11 changed files
with
56 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,7 @@ | |
"10.4.32" | ||
], | ||
"Memcached": [ | ||
"1.6.33", | ||
"1.6.29", | ||
"1.6.22", | ||
"1.5.22" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ spec: | |
runAsUser: 999 | ||
updateConstraints: | ||
allowlist: | ||
- '>1.6.29, <= 1.6.29' | ||
- 1.6.33 | ||
version: 1.6.29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: catalog.kubedb.com/v1alpha1 | ||
kind: MemcachedVersion | ||
metadata: | ||
name: 1.6.33 | ||
spec: | ||
db: | ||
image: ghcr.io/appscode-images/memcached:1.6.33-alpine | ||
exporter: | ||
image: ghcr.io/appscode-images/memcached_exporter:v0.14.3-ac | ||
podSecurityPolicies: | ||
databasePolicyName: memcached-db | ||
securityContext: | ||
runAsUser: 999 | ||
updateConstraints: | ||
allowlist: | ||
- 1.6.33 | ||
version: 1.6.33 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,6 @@ spec: | |
runAsUser: 999 | ||
updateConstraints: | ||
allowlist: | ||
- '>1.6.29, <= 1.6.29' | ||
- 1.6.33 | ||
version: 1.6.29 | ||
{{ end }} |
27 changes: 27 additions & 0 deletions
27
charts/kubedb-catalog/templates/memcached/memcached-1.6.33.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{{ $featureGates := .Values.featureGates }} | ||
{{- if .Values.global }} | ||
{{ $featureGates = mergeOverwrite dict .Values.featureGates .Values.global.featureGates }} | ||
{{- end }} | ||
|
||
{{ if $featureGates.Memcached }} | ||
|
||
apiVersion: catalog.kubedb.com/v1alpha1 | ||
kind: MemcachedVersion | ||
metadata: | ||
name: '1.6.33' | ||
labels: | ||
{{- include "kubedb-catalog.labels" . | nindent 4 }} | ||
spec: | ||
db: | ||
image: '{{ include "image.ghcr" (merge (dict "_repo" "appscode-images/memcached") $) }}:1.6.33-alpine' | ||
exporter: | ||
image: '{{ include "image.ghcr" (merge (dict "_repo" "appscode-images/memcached_exporter") $) }}:v0.14.3-ac' | ||
podSecurityPolicies: | ||
databasePolicyName: memcached-db | ||
securityContext: | ||
runAsUser: 999 | ||
updateConstraints: | ||
allowlist: | ||
- 1.6.33 | ||
version: 1.6.33 | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters