16 lines
381 B
YAML
16 lines
381 B
YAML
|
|
{{- if .Values.minio.enabled }}
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: {{ .Values.minio.credentialsSecret }}
|
||
|
|
namespace: {{ .Values.namespace }}
|
||
|
|
labels:
|
||
|
|
{{- include "osint-dashboard.labels" . | nindent 4 }}
|
||
|
|
annotations:
|
||
|
|
# SOPS will encrypt this
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
MINIO_ROOT_USER: CHANGE_ME_USE_SOPS
|
||
|
|
MINIO_ROOT_PASSWORD: CHANGE_ME_USE_SOPS
|
||
|
|
{{- end }}
|