Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/azure-metrics-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: azure-metrics-exporter
type: application
description: A Helm chart for azure-metrics-exporter
home: https://github.com/webdevops/azure-metrics-exporter
version: 1.2.10
version: 1.3.0
# renovate: image=webdevops/azure-metrics-exporter
appVersion: 24.9.1
keywords:
Expand Down
7 changes: 7 additions & 0 deletions charts/azure-metrics-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ spec:
- containerPort: 8080
name: http-metrics
protocol: TCP
{{- with .Values.extraVolumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}

{{- with .Values.resources }}
resources: {{ toYaml . | nindent 12 }}
Expand All @@ -94,4 +98,7 @@ spec:
{{- end }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets: {{ toYaml .Values.imagePullSecrets | nindent 8 }}
{{- with .Values.extraVolumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
12 changes: 12 additions & 0 deletions charts/azure-metrics-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ secretsEnableTemplateFunctions: false
secrets: {}
# secretName: secretValue

extraVolumes: []
# - name: azure-identity-token
# projected:
# sources:
# - serviceAccountToken:
# audience: api://AzureADTokenExchange
# expirationSeconds: 3600
# path: federated-token
extraVolumeMounts: []
# - mountPath: /var/run/secrets/azure/tokens
# name: azure-identity-token
# readOnly: true

resources:
limits:
Expand Down