Add default secret for testing
Signed-off-by: Michel Hollands <michel.hollands@gmail.com>
This commit is contained in:
parent
e5e13ac517
commit
edc556b074
@ -12,6 +12,7 @@ local:
|
||||
enabled: true
|
||||
minio:
|
||||
enabled: true
|
||||
createSecret: true
|
||||
|
||||
cloud:
|
||||
logs:
|
||||
|
10
charts/meta-monitoring/templates/minio/secret.yaml
Normal file
10
charts/meta-monitoring/templates/minio/secret.yaml
Normal file
@ -0,0 +1,10 @@
|
||||
{{- if .Values.local.minio.createSecret }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: minio
|
||||
namespace: {{ $.Release.Namespace }}
|
||||
data:
|
||||
rootUser: dmFsdWUtMg0KDQo=
|
||||
rootPassword: dmFsdWUtMg0KDQo=
|
||||
{{- end }}
|
@ -27,6 +27,7 @@ local:
|
||||
enabled: false
|
||||
minio:
|
||||
enabled: false # This should be set to true if any of the previous is enabled
|
||||
createSecret: false # This is used for testing, do not use in production
|
||||
grafana:
|
||||
version: 10.4.2
|
||||
# Gateway ingress configuration
|
||||
|
Loading…
x
Reference in New Issue
Block a user