mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-28 04:17:17 +00:00
* Support helm charts and yaml directories as an application source * Run e2e test in parallel and increase timeout
16 lines
No EOL
460 B
YAML
16 lines
No EOL
460 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "minio.fullname" . }}
|
|
labels:
|
|
app: {{ template "minio.name" . }}
|
|
chart: {{ template "minio.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
type: Opaque
|
|
data:
|
|
accesskey: {{ .Values.accessKey | b64enc }}
|
|
secretkey: {{ .Values.secretKey | b64enc }}
|
|
{{- if .Values.gcsgateway.enabled }}
|
|
gcs_key.json: {{ .Values.gcsgateway.gcsKeyJson | b64enc }}
|
|
{{- end }} |