We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028959e commit b0bc2b0Copy full SHA for b0bc2b0
charts/platform-api/Chart.yaml
@@ -1,4 +1,4 @@
1
apiVersion: v1
2
name: ushahidi-platform-api
3
-version: 0.0.1-alpha.32
+version: 0.0.1-alpha.33
4
icon: https://github.ushahidi.org/helm-charts/icon.png
charts/platform-api/templates/redis.yml
@@ -29,7 +29,9 @@ spec:
29
spec:
30
containers:
31
- env: []
32
- image: redis:4-alpine
+ {{- with .Values.redis.image }}
33
+ image: {{ empty .repository | ternary "" (print .repository "/") }}{{ .name }}:{{ .tag }}
34
+ {{- end }}
35
imagePullPolicy: Always
36
name: redis
37
ports:
charts/platform-api/values.yaml
@@ -206,6 +206,10 @@ mysql:
206
redis:
207
## Set to false to disable
208
enabled: true
209
+ image:
210
+ repository: ""
211
+ name: redis
212
+ tag: 4-alpine
213
limits:
214
cpu: "1"
215
memory: "1Gi"
0 commit comments