Skip to content

Commit 00aeecf

Browse files
committed
change image version to latest
1 parent 4f49923 commit 00aeecf

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

charts/redis-stack/templates/statefulset.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ metadata:
1919
spec:
2020
selector:
2121
matchLabels:
22-
app: "{{ .Values.server_name }}" # has to match .spec.template.metadata.labels
22+
app: "{{ .Values.server_name }}"
2323
serviceName: "{{ .Values.server_name }}"
2424
replicas: 1
2525
template:
2626
metadata:
2727
labels:
28-
app: "{{ .Values.server_name }}" # has to match .spec.selector.matchLabels
28+
app: "{{ .Values.server_name }}"
2929
spec:
3030
terminationGracePeriodSeconds: 10
3131
containers:
3232
- name: "{{ .Values.server_name }}"
33-
image: {{ .Values.statefulset.image }}
33+
image: {{ .Values.statefulset.image }}:{{ .Values.statefulset.tag }}
3434
imagePullPolicy: Always
3535
ports:
3636
- containerPort: 6379
@@ -40,7 +40,7 @@ spec:
4040
name: db
4141
spec:
4242
accessModes: [ "ReadWriteOnce" ]
43-
storageClassName: "standard"
43+
storageClassName: local-path
4444
resources:
4545
requests:
4646
storage: 1Gi

charts/redis-stack/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
deployment:
22
image: "redis/redis-stack"
3-
tag: "edge"
3+
tag: "latest"
44
name: redis-stack
55
server_name: redis-stack-server
66
statefulset:
7-
image: "redis/redis-stack-server"
7+
image: "redis/redis-stack-server"
8+
tag: "latest"

0 commit comments

Comments
 (0)