Skyvern/k8s/charts/skyvern-ui/templates/secret.yaml
Shuchang Zheng 4d0b721966
fix(ui): tolerate legacy npm run start override + add official Helm chart (#6683)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 14:24:26 -04:00

11 lines
331 B
YAML

{{- if and .Values.apiKey.value (not .Values.apiKey.existingSecret) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "skyvern-ui.fullname" . }}
labels:
{{- include "skyvern-ui.labels" . | nindent 4 }}
type: Opaque
stringData:
{{ .Values.apiKey.existingSecretKey }}: {{ .Values.apiKey.value | quote }}
{{- end }}