diff --git a/Helm/Grafana/README.md b/Helm/Grafana/README.md new file mode 100644 index 0000000..3c0b549 --- /dev/null +++ b/Helm/Grafana/README.md @@ -0,0 +1,34 @@ +# Deploy Grafana using Helm + +## Add Grafana Helm Repo +``` +helm repo add grafana https://grafana.github.io/helm-charts +``` + +## Update Helm Repo +``` +helm repo update +``` + +## Deploy Grafana + +``` +helm install [RELEASE_NAME] grafana/grafana +``` + +## Get Grafana service name +``` +kubectl get service +``` + +## Expose Grafana service to port 3000 +``` +kubectl --namespace default port-forward [SERVICE_NAME] 3000 +``` + +## Uninstall Chart +``` +helm uninstall [RELEASE_NAME] +``` + + diff --git a/Helm/Prometheus/README.md b/Helm/Prometheus/README.md new file mode 100644 index 0000000..0e90db8 --- /dev/null +++ b/Helm/Prometheus/README.md @@ -0,0 +1,27 @@ +# Deploy Promethues using Helm + +## Add Prometheus Helm Repo +``` +helm repo add prometheus-community https://prometheus-community.github.io/helm-charts +``` + +## Update Helm Repo +``` +helm repo update +``` + +## Deploy Promethues + +``` +helm install [RELEASE_NAME] prometheus-community/prometheus +``` + +## Expose Prometheus service to port 9090 +``` +kubectl expose service prometheus-server --type=NodePort --target-port=9090 --name=prometheus-server-np +``` + +## Uninstall Chart +``` +helm uninstall [RELEASE_NAME] +``` \ No newline at end of file