license-secret.yaml 365 B

1234567891011121314
  1. {{- if .Values.enterprise.enabled -}}
  2. {{- if not .Values.license.external }}
  3. apiVersion: v1
  4. kind: Secret
  5. metadata:
  6. name: {{ tpl .Values.license.secretName . }}
  7. labels:
  8. {{- include "tempo.labels" (dict "ctx" .) | nindent 4 }}
  9. namespace: {{ .Release.Namespace | quote }}
  10. data:
  11. license.jwt: {{ .Values.license.contents | b64enc }}
  12. {{- end -}}
  13. {{- end -}}