File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
charts/azure-metrics-exporter Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: azure-metrics-exporter
3
3
type : application
4
4
description : A Helm chart for azure-metrics-exporter
5
5
home : https://github.com/webdevops/azure-metrics-exporter
6
- version : 1.2.10
6
+ version : 1.3.0
7
7
# renovate: image=webdevops/azure-metrics-exporter
8
8
appVersion : 24.9.1
9
9
keywords :
Original file line number Diff line number Diff line change 69
69
- containerPort : 8080
70
70
name : http-metrics
71
71
protocol : TCP
72
+ {{- with .Values.extraVolumeMounts }}
73
+ volumeMounts :
74
+ {{- toYaml . | nindent 12 }}
75
+ {{- end }}
72
76
73
77
{{- with .Values.resources }}
74
78
resources : {{ toYaml . | nindent 12 }}
94
98
{{- end }}
95
99
{{- if .Values.imagePullSecrets }}
96
100
imagePullSecrets : {{ toYaml .Values.imagePullSecrets | nindent 8 }}
101
+ {{- with .Values.extraVolumes }}
102
+ volumes :
103
+ {{- toYaml . | nindent 8 }}
97
104
{{- end }}
Original file line number Diff line number Diff line change @@ -32,6 +32,18 @@ secretsEnableTemplateFunctions: false
32
32
secrets : {}
33
33
# secretName: secretValue
34
34
35
+ extraVolumes : []
36
+ # - name: azure-identity-token
37
+ # projected:
38
+ # sources:
39
+ # - serviceAccountToken:
40
+ # audience: api://AzureADTokenExchange
41
+ # expirationSeconds: 3600
42
+ # path: federated-token
43
+ extraVolumeMounts : []
44
+ # - mountPath: /var/run/secrets/azure/tokens
45
+ # name: azure-identity-token
46
+ # readOnly: true
35
47
36
48
resources :
37
49
limits :
You can’t perform that action at this time.
0 commit comments