Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/charts/monitoring/dashboards/node-inventory.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,4 +383,4 @@
"title": "Node Inventory Status",
"uid": "wdPp0woVz",
"version": 7
}
}
11 changes: 11 additions & 0 deletions deploy/charts/monitoring/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ spec:
- name: grafana-dashboards-volume
mountPath: /etc/grafana/provisioning/dashboards
readOnly: true
- name: grafana-plugins-volume
mountPath: /etc/grafana/provisioning/plugins
- name: grafana-notifiers-volume
mountPath: /etc/grafana/provisioning/notifiers
readOnly: true
- name: monitoring-ui-volume
mountPath: /run/secrets/stackrox.io/monitoring/certs/
readOnly: true
Expand Down Expand Up @@ -128,6 +133,12 @@ spec:
name: grafana-dashboards
- name: grafana-var-volume
emptyDir: {}
- name: grafana-notifiers-volume
emptyDir: {}
- name: grafana-plugins-volume
configMap:
defaultMode: 420
name: grafana-plugins
- name: prometheus-config-volume
configMap:
name: prometheus
Expand Down
11 changes: 11 additions & 0 deletions deploy/charts/monitoring/templates/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ data:
---
apiVersion: v1
kind: ConfigMap
metadata:
name: grafana-plugins
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: stackrox
data:
sample.yaml: |-
apiVersion: 1
---
apiVersion: v1
kind: ConfigMap
metadata:
name: grafana-dashboards
namespace: {{ .Release.Namespace }}
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/monitoring/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
grafanaImage: grafana/grafana:7.5.15
grafanaImage: grafana/grafana:10.4.17
prometheusImage: prom/prometheus:v2.34.0
password: stackrox

Expand Down
Loading