File tree 5 files changed +34
-5
lines changed
5 files changed +34
-5
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ type: application
14
14
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
- version : 2.11.22
17
+ version : 2.11.23
18
18
19
19
# This is the version number of the application being deployed. This version number should be
20
20
# incremented each time you make changes to the application.
21
- appVersion : 2.11.22
21
+ appVersion : 2.11.23
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ helm.sh/chart: {{ include "metrics-agent.chart" . }}
41
41
app.kubernetes.io/version: { { .Chart.AppVersion | quote } }
42
42
{ {- end } }
43
43
app.kubernetes.io/managed-by: { { .Release.Service } }
44
+ { {- if .Values.additionalLabels } }
45
+ { { toYaml .Values.additionalLabels } }
46
+ { {- end } }
44
47
{ {- end -} }
45
48
46
49
{ {/*
Original file line number Diff line number Diff line change 12
12
template :
13
13
metadata :
14
14
labels :
15
- {{- include "metrics-agent.selectorLabels" . | nindent 8 }}
15
+ {{- include "metrics-agent.labels" . | nindent 8 }}
16
+ {{- if .Values.podLabels }}{{ toYaml .Values.podLabels | nindent 8 }}{{- end }}
16
17
spec :
17
18
{{- with .Values.imagePullSecrets }}
18
19
imagePullSecrets :
52
53
{{- toYaml .Values.resources | nindent 12 }}
53
54
livenessProbe :
54
55
{{- toYaml .Values.livenessProbe | nindent 12 }}
56
+ {{- with .Values.volumeMounts }}
57
+ volumeMounts :
58
+ {{- toYaml . | nindent 12 }}
59
+ {{- end }}
60
+ {{- with .Values.volumes }}
61
+ volumes :
62
+ {{- toYaml . | nindent 8 }}
63
+ {{- end }}
55
64
{{- with .Values.nodeSelector }}
56
65
nodeSelector :
57
66
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ pollInterval: 180
24
24
25
25
image :
26
26
name : cloudability/metrics-agent
27
- tag : 2.11.22
27
+ tag : 2.11.23
28
28
pullPolicy : Always
29
29
30
30
imagePullSecrets : []
@@ -73,5 +73,22 @@ openShift: false
73
73
seccompProfile :
74
74
type : RuntimeDefault
75
75
76
+ volumes : []
77
+ # - name: foo
78
+ # secret:
79
+ # secretName: mysecret
80
+ # optional: false
81
+
82
+ volumeMounts : []
83
+ # - name: foo
84
+ # mountPath: "/etc/foo"
85
+ # readOnly: true
86
+
87
+ # Extra labels to add to the pod only.
88
+ podLabels : {}
89
+
90
+ # Extra labels to add to all resources, including pods.
91
+ additionalLabels : {}
92
+
76
93
drop :
77
94
- ALL
Original file line number Diff line number Diff line change 1
1
package version
2
2
3
3
// VERSION is the current version of the agent
4
- var VERSION = "2.11.22 "
4
+ var VERSION = "2.11.23 "
You can’t perform that action at this time.
0 commit comments