Skip to content
Snippets Groups Projects
configmap.yaml 562 B
Newer Older
  • Learn to ignore specific revisions
  • apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        app: "{{ .Values.conf.appName }}"
      name: "{{ .Values.conf.configmap }}"
      namespace: "{{ .Release.Namespace }}"
    data:
      LOG_LEVEL: "{{ .Values.data.logLevel }}"
      SPRING_PROFILES_ACTIVE: "{{ .Values.data.springProfilesActive }}"
      ENTITLEMENTS_HOST: "{{ .Values.data.entitlementsHost }}"
      REGISTER_HOST: "{{ .Values.data.registerHost }}"
      PARTITION_HOST: "{{ .Values.data.partitionHost }}"
      {{- if not $.Values.conf.onPremEnabled }}
      GOOGLE_AUDIENCES: "{{ .Values.data.googleAudiences }}"
      {{- end }}