Hello!
While trying to reference a API key from a k8s secret, as mentioned in the README, helm fails to render the template and apply it.
secrets.yaml template is set to always create a k8s secret from the apiKey value.
Should the secret be created only if the apiKey value is set, like so?
{{- if not .Values.hyperdx.apiKey.valueFrom }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "hdx-oss.fullname" . }}-app-secrets
labels:
{{- include "hdx-oss.labels" . | nindent 4 }}
type: Opaque
data:
api-key: {{ .Values.hyperdx.apiKey | b64enc }}
{{- end }}
Thank you
Hello!
While trying to reference a API key from a k8s secret, as mentioned in the README, helm fails to render the template and apply it.
secrets.yaml template is set to always create a k8s secret from the apiKey value.
Should the secret be created only if the apiKey value is set, like so?
Thank you