File tree Expand file tree Collapse file tree 3 files changed +25
-8
lines changed Expand file tree Collapse file tree 3 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
name : redis
3
- version : 0.0.2
3
+ version : 0.0.3
Original file line number Diff line number Diff line change @@ -14,29 +14,29 @@ spec:
14
14
metadata :
15
15
labels :
16
16
app : redis
17
- {{- if .Values.redis. exporter.enabled }}
17
+ {{- if .Values.exporter.enabled }}
18
18
annotations :
19
19
prometheus.io/scrape : " true"
20
20
prometheus.io/port : " 9121"
21
21
{{- end }}
22
22
spec :
23
23
containers :
24
24
- name : redis
25
- image : {{ .Values.redis. image.repository }}:{{ .Values.redis .image.tag }}
26
- imagePullPolicy : {{ .Values.redis. image.pullPolicy }}
25
+ image : {{ .Values.image.repository }}:{{ .Values.image.tag }}
26
+ imagePullPolicy : {{ .Values.image.pullPolicy }}
27
27
resources :
28
- {{ toYaml .Values.redis. resources | nindent 10 }}
28
+ {{ toYaml .Values.resources | nindent 10 }}
29
29
volumeMounts :
30
30
- name : devshm
31
31
mountPath : /dev/shm
32
32
ports :
33
33
- name : redis
34
34
containerPort : 6379
35
35
protocol : TCP
36
- {{- if .Values.redis. exporter.enabled }}
36
+ {{- if .Values.exporter.enabled }}
37
37
- name : redis-exporter
38
- image : {{ .Values.redis. exporter.image.repository }}:{{ .Values.redis .exporter.image.tag }}
39
- imagePullPolicy : {{ .Values.redis. exporter.image.pullPolicy }}
38
+ image : {{ .Values.exporter.image.repository }}:{{ .Values.exporter.image.tag }}
39
+ imagePullPolicy : {{ .Values.exporter.image.pullPolicy }}
40
40
ports :
41
41
- name : redis-exporter
42
42
containerPort : 9121
Original file line number Diff line number Diff line change
1
+ image :
2
+ repository : " redis"
3
+ tag : " 7.2.4"
4
+ pullPolicy : IfNotPresent
5
+ resources :
6
+ requests :
7
+ cpu : 2
8
+ memory : 5000Mi
9
+ nodeSelector : {}
10
+ tolerations : []
11
+ affinity : {}
12
+ exporter :
13
+ enabled : true
14
+ image :
15
+ repository : " oliver006/redis_exporter"
16
+ tag : " v1.59.0"
17
+ pullPolicy : IfNotPresent
You can’t perform that action at this time.
0 commit comments