@@ -362,8 +362,7 @@ resources: {}
362362# # Node labels for pod assignment
363363# # ref: https://kubernetes.io/docs/user-guide/node-selection/
364364#
365- nodeSelector :
366- kubernetes.io/hostname : minikube-m03
365+ nodeSelector : {}
367366
368367# # Tolerations for pod assignment
369368# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
@@ -416,13 +415,13 @@ extraContainerVolumes: []
416415# #
417416persistence :
418417 type : pvc
419- enabled : true
418+ enabled : false
420419 # storageClassName: default
421420 # # (Optional) Use this to bind the claim to an existing PersistentVolume (PV) by name.
422421 volumeName : " "
423422 accessModes :
424423 - ReadWriteOnce
425- size : 1Gi
424+ size : 10Gi
426425 # annotations: {}
427426 finalizers :
428427 - kubernetes.io/pvc-protection
@@ -477,7 +476,7 @@ initChownData:
477476 # cpu: 100m
478477 # memory: 128Mi
479478 securityContext :
480- readOnlyRootFilesystem : true
479+ readOnlyRootFilesystem : false
481480 runAsNonRoot : false
482481 runAsUser : 0
483482 seccompProfile :
@@ -489,15 +488,15 @@ initChownData:
489488 - ALL
490489
491490# Administrator credentials when not using an existing secret (see below)
492- # adminUser: admin
491+ adminUser : admin
493492# adminPassword: strongpassword
494493
495494# Use an existing secret for the admin user.
496495admin :
497496 # # Name of the secret. Can be templated.
498- existingSecret : " grafana-secret "
499- userKey : " admin-user"
500- passwordKey : " admin-password"
497+ existingSecret : " "
498+ userKey : admin-user
499+ passwordKey : admin-password
501500
502501# # Define command to be executed at startup by grafana container
503502# # Needed if using `vault-env` to manage secrets (ref: https://banzaicloud.com/blog/inject-secrets-into-pods-vault/)
@@ -887,8 +886,7 @@ grafana.ini:
887886 grafana_net :
888887 url : https://grafana.net
889888 server :
890- domain : localhost
891- root_url : http://localhost:3000
889+ domain : " {{ if (and .Values.ingress.enabled .Values.ingress.hosts) }}{{ tpl (.Values.ingress.hosts | first) . }}{{ else }}''{{ end }}"
892890# # grafana Authentication can be enabled with the following values on grafana.ini
893891 # server:
894892 # The full public facing url you use in browser, used for redirects and emails
@@ -1390,7 +1388,7 @@ sidecar:
13901388
13911389# # Override the deployment namespace
13921390# #
1393- namespaceOverride : " observability "
1391+ namespaceOverride : " "
13941392
13951393# # Number of old ReplicaSets to retain
13961394# #
0 commit comments