values.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # General configuration shared across resources
  2. app:
  3. ingress:
  4. enabled: true
  5. ingressClassName: nginx
  6. annotations:
  7. nginx.ingress.kubernetes.io/whitelist-source-range: "10.0.0.0/8,192.168.0.0/16"
  8. issuer:
  9. scope: cluster
  10. name: letsencrypt
  11. settings:
  12. ## Global dashboard settings
  13. ## Note: Use all or none. Dashboard does not support default value merging currently.
  14. global:
  15. # Hide all access denied warnings in the notification panel
  16. disableAccessDeniedNotifications: false
  17. # API deployment configuration
  18. api:
  19. containers:
  20. args: ["--enable-skip-login"]
  21. ## Extra configurations:
  22. ## - manifests
  23. ## - predefined roles
  24. ## - prometheus
  25. ## - etc...
  26. extras:
  27. # Start in ReadOnly mode.
  28. # Specifies whether cluster-wide RBAC resources (ClusterRole, ClusterRolebinding) with read only permissions to all resources listed inside the cluster should be created
  29. # Only dashboard-related Secrets and ConfigMaps will still be available for writing.
  30. #
  31. # The basic idea of the clusterReadOnlyRole
  32. # is not to hide all the secrets and sensitive data but more
  33. # to avoid accidental changes in the cluster outside the standard CI/CD.
  34. #
  35. # It is NOT RECOMMENDED to use this version in production.
  36. # Instead, you should review the role and remove all potentially sensitive parts such as
  37. # access to persistentvolumes, pods/log etc.
  38. clusterReadOnlyRole: true
  39. ### Metrics Scraper
  40. ### Container to scrape, store, and retrieve a window of time from the Metrics Server.
  41. ### refs: https://github.com/kubernetes-sigs/dashboard-metrics-scraper
  42. metricsScraper:
  43. enabled: false
  44. ## Optional Nginx Ingress sub-chart configuration
  45. ## Enable this if you don't already have nginx-ingress enabled on your cluster.
  46. nginx:
  47. enabled: false
  48. cert-manager:
  49. enabled: false
  50. metrics-server:
  51. enabled: false