mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-16 12:45:01 +08:00
10 lines
232 B
YAML
10 lines
232 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ .Release.Name }}-secrets"
|
|
namespace: {{ .Release.Namespace }}
|
|
type: Opaque
|
|
data:
|
|
{{- range $key, $val := .Values.secrets }}
|
|
{{ $key }}: {{ $val | b64enc | quote }}
|
|
{{- end }} |