File tree 1 file changed +27
-17
lines changed
1 file changed +27
-17
lines changed Original file line number Diff line number Diff line change 1
- # setup prometheus (kube-prometheus-stack) on k8s
1
+ # 🚀 Setup Prometheus (kube-prometheus-stack) on Kubernetes
2
2
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 .
4
4
5
- # Manual process
5
+ # 🔧 Manual Process
6
6
7
- ## add repo
7
+ ## 📥 Add Helm Repo
8
8
9
9
``` bash
10
-
11
10
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
12
-
13
11
helm repo update
14
12
```
15
13
16
- ## create namespace
17
-
14
+ ## 🏷️ Create Namespace
18
15
``` bash
19
16
kubectl create namespace monitoring
20
17
```
21
18
22
- ## add grafana secrets (alert credentials mail, slack ....)
23
-
19
+ ## 🔑 Add Grafana Secrets (Alert Credentials: Email, Slack, etc.)
24
20
``` bash
25
21
kubectl apply -f grafana-secret.yml
26
22
```
27
23
28
- ### base64 generate
24
+ ### 🔐 Base64 Generate
29
25
30
26
``` bash
31
27
echo -n ' the_data' | base64
32
28
```
33
29
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
+ ```
36
46
37
- ## install prometheus
47
+ ## 📈 Install Prometheus
38
48
39
49
``` bash
40
50
helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring -f config/grafana.yml -f config/prometheus.yml -f config/alert-manager.yml
41
51
```
42
52
43
- ## upgrade
53
+ ## ⬆️ Upgrade
44
54
45
55
``` bash
46
56
helm upgrade prometheus prometheus-community/kube-prometheus-stack -n monitoring -f config/grafana.yml -f config/prometheus.yml -f config/alert-manager.yml
47
57
```
48
58
49
- ## uninstall
59
+ ## ❌ Uninstall
50
60
51
61
``` bash
52
62
helm uninstall prometheus -n monitoring
53
63
```
54
64
55
- # automate with bash script
65
+ # 🤖 Automate Process with Bash Script
56
66
57
67
``` bash
58
68
./setup-prometheus.sh
You can’t perform that action at this time.
0 commit comments