Files
service-catalog/manifests/helm/nim/25.4.0/templates/auth-secret.yaml
T
2026-01-19 16:11:44 +09:00

12 lines
284 B
YAML

{{- if eq .Values.nimService.existingAuthSecret "" }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.nimService.authSecret }}
labels:
{{- include "nim.labels" . | nindent 4 }}
type: Opaque
data:
NGC_API_KEY: {{ .Values.nimService.ngcAPIKey | b64enc }}
{{- end }}