diff options
| author | Paul Buetow <paul@buetow.org> | 2025-10-24 09:47:13 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-10-24 09:47:13 +0300 |
| commit | b2d0fc7a5e0fc9a3693de1ff8f83cc7fb08089f9 (patch) | |
| tree | 0aece6b368866b84c35439728ec79fabb1a30c7c /f3s/prometheus/Justfile | |
| parent | 5d5c261d4df6b28f5ade47902b17bfa37e80efcf (diff) | |
add persistent volumes to prometheus/grafana
Diffstat (limited to 'f3s/prometheus/Justfile')
| -rw-r--r-- | f3s/prometheus/Justfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/f3s/prometheus/Justfile b/f3s/prometheus/Justfile new file mode 100644 index 0000000..2eae235 --- /dev/null +++ b/f3s/prometheus/Justfile @@ -0,0 +1,9 @@ +install: + kubectl apply -f persistent-volumes.yaml + helm install prometheus prometheus-community/kube-prometheus-stack --namespace monitoring -f persistence-values.yaml + just -f grafana-ingress/Justfile install + +uninstall: + just -f grafana-ingress/Justfile delete + helm uninstall prometheus --namespace monitoring + kubectl delete -f persistent-volumes.yaml
\ No newline at end of file |
