Skip to content

Commit

Permalink
fix: Update Grafana resource limits and disable service account token…
Browse files Browse the repository at this point in the history
… automounting

This commit updates the resource limits for the Grafana container in the `grafana.yaml` file. The CPU limit is set to "1" and the CPU request is set to "0.5". Additionally, the service account token automounting is disabled by setting `automountServiceAccountToken` to false.
  • Loading branch information
Searge committed Apr 14, 2024
1 parent 2b14cfd commit 12bb7ce
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ansible/files/k8s/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ spec:
containers:
- image: grafana/grafana
name: grafana
resources: {}
resources:
limits:
cpu: "1"
requests:
cpu: "0.5"
dnsPolicy: ClusterFirst
restartPolicy: Always
automountServiceAccountToken: false
status: {}

0 comments on commit 12bb7ce

Please sign in to comment.