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
|
enabled: true
|
||||||
minio:
|
minio:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
createSecret: true
|
||||||
|
|
||||||
cloud:
|
cloud:
|
||||||
logs:
|
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
|
enabled: false
|
||||||
minio:
|
minio:
|
||||||
enabled: false # This should be set to true if any of the previous is enabled
|
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:
|
grafana:
|
||||||
version: 10.4.2
|
version: 10.4.2
|
||||||
# Gateway ingress configuration
|
# Gateway ingress configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user