We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bitnamicharts/grafana-operator 4.9.6
amd64
Deploy the grafana-operator charts.
Deploy a GrafanaDatasource
apiVersion: grafana.integreatly.org/v1beta1 kind: GrafanaDatasource metadata: name: prometheus namespace: default spec: instanceSelector: matchLabels: app.kubernetes.io/instance: grafana-operator app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: grafana-operator datasource: name: prometheus type: prometheus access: proxy url: http://kube-prometheus-prometheus:9090 isDefault: true jsonData: 'tlsSkipVerify': true 'timeInterval': "5s"
datasources
apiVersion: grafana.integreatly.org/v1beta1 kind: GrafanaDashboard metadata: name: grafana-dashboard-redis-11835 namespace: default labels: app: grafana spec: instanceSelector: matchLabels: app.kubernetes.io/instance: grafana-operator app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: grafana-operator # https://grafana.com/grafana/dashboards/13502-minio-dashboard/ grafanaCom: id: 13502 revision: 26 datasources: - datasourceName: prometheus inputName: prometheus
Should not impact the result, but the values.yaml customization are:
operator: enabled: true prometheus: serviceMonitor: enabled: true grafana: enabled: true config: server: root_url: "http://grafana-operator-grafana-service:3000/grafana" serve_from_sub_path: "true"
I expect the templating variables to be working
The data source is lost in the the templating variables
No response
The text was updated successfully, but these errors were encountered:
Hi @mobidyc
It seems the input name expected by that specific dashboard is DS_PROMETHEUS, see:
DS_PROMETHEUS
As a consequence, you need to apply the change below in your GrafanaDashboard:
apiVersion: grafana.integreatly.org/v1beta1 kind: GrafanaDashboard metadata: name: grafana-dashboard-redis-11835 namespace: default labels: app: grafana spec: instanceSelector: matchLabels: app.kubernetes.io/instance: grafana-operator app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: grafana-operator # https://grafana.com/grafana/dashboards/13502-minio-dashboard/ grafanaCom: id: 13502 revision: 26 datasources: - datasourceName: prometheus - inputName: prometheus + inputName: DS_PROMETHEUS
Sorry, something went wrong.
juan131
No branches or pull requests
Name and Version
bitnamicharts/grafana-operator 4.9.6
What architecture are you using?
amd64
What steps will reproduce the bug?
Deploy the grafana-operator charts.
Deploy a GrafanaDatasource
datasources
and a mix of different values with same result:Are you using any custom parameters or values?
Should not impact the result, but the values.yaml customization are:
What is the expected behavior?
I expect the templating variables to be working
What do you see instead?
The data source is lost in the the templating variables
Additional information
No response
The text was updated successfully, but these errors were encountered: