infra-charts/grafana/values.yaml

45 lines
899 B
YAML

image: "grafana/grafana-oss"
imageTag: "11.3.4"
config:
# Allow user registration
allowSignup: false
# Protocol Grafana is served as
protocol: http
# Protocol that Grafana is externally visible under
externalProtocol: https
# Domain under which Grafana will be accessible
domain: example.org
database:
enabled: true
type: postgres
user: grafana
passwordRef:
secretName: grafana
key: database-password
host: db.example.org
database: grafana
oauth:
enabled: false
name: example login
clientId: <...>
clientSecretRef:
secretName: grafana
key: client-secret
authUrl: <...>
tokenUrl: <...>
apiUrl: <...>
signoutRedirectUrl: <...>
autoLogin: true
allowAssignAdmin: true
roleAttributePath: ""
extraObjects: []
deployment:
# Extra labels
podLabels: {}
pvc:
storageClass: local-storage