Last active
June 30, 2022 16:37
-
-
Save vilaca/ae41e40f59b1a24dcb51535559b4fca6 to your computer and use it in GitHub Desktop.
1 Click Observability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eou pipefail | |
#prometheus-community https://prometheus-community.github.io/helm-charts | |
#loki https://grafana.github.io/loki/charts | |
kubectl create ns monitoring | |
helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring | |
helm upgrade --install loki loki/loki-stack -n monitoring | |
#kubectl create ns utils | |
#helm repo add twuni https://helm.twun.io -n utils | |
#helm install twuni/docker-registry -n utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment