Files
charts/bitnami/wavefront-hpa-adapter/templates/custom-metrics-configmap.yaml
Javier J. Salmerón-García cdc3fc9ea0 [bitnami/wavefront-hpa-adapter] Add chart (#5852)
* [bitnami/wavefront-hpa-adapter] Add chart

* Remove extra clutter

* Fix readme

* Other changes

* Fix missing issues

* [bitnami/wavefront-hpa-adapter] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2021-06-02 14:22:29 +02:00

19 lines
757 B
YAML

{{- if .Values.adapterRules }}
apiVersion: v1
kind: ConfigMap
metadata:
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: wavefront-hpa-adapter
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
name: {{ template "common.names.fullname" . }}
namespace: {{ .Release.Namespace }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
config.yaml: |
rules: {{- include "common.tplvalues.render" ( dict "value" .Values.adapterRules "context" $ ) | nindent 6 }}
{{- end }}