Skip to content

Commit 28573aa

Browse files
committed
documentation add
1 parent f024b72 commit 28573aa

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

README.md

+27-17
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,68 @@
1-
# setup prometheus (kube-prometheus-stack) on k8s
1+
# 🚀 Setup Prometheus (kube-prometheus-stack) on Kubernetes
22

3-
easily setup prometheus(kube-prometheus-stack) on kubernetes and set prometheus, grafana and alertmanager config.
3+
Easily set up Prometheus (kube-prometheus-stack) on Kubernetes and configure Prometheus, Grafana, and Alertmanager.
44

5-
# Manual process
5+
# 🔧 Manual Process
66

7-
## add repo
7+
## 📥 Add Helm Repo
88

99
```bash
10-
1110
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
12-
1311
helm repo update
1412
```
1513

16-
## create namespace
17-
14+
## 🏷️ Create Namespace
1815
```bash
1916
kubectl create namespace monitoring
2017
```
2118

22-
## add grafana secrets (alert credentials mail, slack ....)
23-
19+
## 🔑 Add Grafana Secrets (Alert Credentials: Email, Slack, etc.)
2420
```bash
2521
kubectl apply -f grafana-secret.yml
2622
```
2723

28-
### base64 generate
24+
### 🔐 Base64 Generate
2925

3026
```bash
3127
echo -n 'the_data' | base64
3228
```
3329

34-
## config
35-
you can modify config data inside `config folder`
30+
## 🛠️ Configuration
31+
You can modify the config data inside the config folder.
32+
33+
34+
35+
36+
37+
```bash
38+
helm uninstall prometheus -n monitoring
39+
```
40+
41+
# Automate Process with bash script
42+
43+
```bash
44+
./setup-prometheus.sh
45+
```
3646

37-
## install prometheus
47+
## 📈 Install Prometheus
3848

3949
```bash
4050
helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring -f config/grafana.yml -f config/prometheus.yml -f config/alert-manager.yml
4151
```
4252

43-
## upgrade
53+
## ⬆️ Upgrade
4454

4555
```bash
4656
helm upgrade prometheus prometheus-community/kube-prometheus-stack -n monitoring -f config/grafana.yml -f config/prometheus.yml -f config/alert-manager.yml
4757
```
4858

49-
## uninstall
59+
## ❌ Uninstall
5060

5161
```bash
5262
helm uninstall prometheus -n monitoring
5363
```
5464

55-
# automate with bash script
65+
# 🤖 Automate Process with Bash Script
5666

5767
```bash
5868
./setup-prometheus.sh

0 commit comments

Comments
 (0)