Skip to content

Commit 92dffc9

Browse files
committed
doc: 🌎 generate other english docs
1 parent e7d0193 commit 92dffc9

File tree

6 files changed

+108
-228
lines changed

6 files changed

+108
-228
lines changed

pages/platform/kubernetes-k8s/monitoring-apps-grafana-prometheus/guide.en-asia.md

Lines changed: 18 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ slug: monitoring-apps-prometheus-grafana
44
excerpt: 'Find out how to monitor and visualize metrics with Prometheus and Grafana on an OVHcloud Managed Kubernetes Service'
55
section: Monitoring & Observability
66
order: 00
7-
updated: 2022-03-16
7+
updated: 2023-03-15
88
---
99

1010
<style>
@@ -29,7 +29,7 @@ updated: 2022-03-16
2929
}
3030
</style>
3131

32-
**Last updated March 16, 2022.**
32+
**Last updated March 15, 2023.**
3333

3434
## Objective
3535

@@ -83,61 +83,39 @@ Hang tight while we grab the latest from your chart repositories...
8383
Update Complete. ⎈Happy Helming!⎈
8484
</code></pre>
8585

86-
You could need to modify some settings. To do this, you can set parameters on the command line (`--set param.name=value`) or create a local `values.yml` based on the values from the chart.
87-
To get all the possible parameters:
86+
You need to modify some settings. To do this, inspect the chart to retrieve these values ​​in a file:
8887

8988
```bash
90-
helm inspect values prometheus-community/kube-prometheus-stack
89+
helm inspect values prometheus-community/kube-prometheus-stack > /tmp/kube-prometheus-stack.values
9190
```
9291

93-
> [!primary]
94-
>
95-
> Some default values come from other charts, like Grafana for example: https://github.com/grafana/helm-charts/blob/main/charts/grafana/values.yaml
96-
>
92+
Open the `/tmp/kube-prometheus-stack.values` file in your favorite editor.
9793

98-
For example, a good practice is to change the default administrator password for Grafana.
99-
You can find it in the `grafana` section of the default values of the chart with the name `adminPassword`.
100-
Copy and save the Grafana admin password, you will use it later in this tutorial.
101-
You need change other parameters, like the service type for example.
102-
You can create a `/tmp/values.yml` as following to change these parameters:
103-
```yaml
104-
grafana:
105-
adminPassword: <my cool password>
106-
service:
107-
type: LoadBalancer
108-
109-
prometheus:
110-
prometheusSpec:
111-
serviceMonitorSelectorNilUsesHelmValues: false
112-
service:
113-
type: LoadBalancer
114-
```
94+
Then search into it for `adminPassword` and replace it with the password you want to use for Grafana.
11595

116-
You are now ready to install Prometheus and Grafana.
96+
By default, the Grafana password should be like this:
11797

118-
```bash
119-
helm install prometheus-community/kube-prometheus-stack \
120-
--create-namespace --namespace prometheus \
121-
--generate-name \
122-
--values /tmp/values.yml
98+
```yaml
99+
adminPassword: prom-operator
123100
```
124101
125-
Or you can directly set parameters to avoid creating a `values.yml`:
102+
Copy and save the Grafana admin password, you will use it later in this tutorial.
103+
104+
You are now ready to install Prometheus and Grafana.
126105
127106
```bash
128107
helm install prometheus-community/kube-prometheus-stack \
129108
--create-namespace --namespace prometheus \
130109
--generate-name \
110+
--values /tmp/kube-prometheus-stack.values \
131111
--set prometheus.service.type=LoadBalancer \
132112
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
133-
--set grafana.adminPAssword=<my cool password>
134113
--set grafana.service.type=LoadBalancer
135114
```
136115

137-
138116
> [!primary]
139117
>
140-
> You can choose to install or not some components, for example if you don't want Grafana just add `--set grafana.enabled=false` or add the `enabled: false` in the section `grafana` of the `/tmp/values.yml` file.
118+
> You can only install prometheus without Grafana by setting the following property to false: `--set grafana.enabled=false`
141119
>
142120
143121
As you can see, a new `prometheus` namespace will be created and we specified that we want to deploy a LoadBalancer in order to access externally to Prometheus and Grafana easily.
@@ -147,8 +125,10 @@ You should have a behavior like this:
147125
<pre class="console"><code>$ helm install prometheus-community/kube-prometheus-stack \
148126
--create-namespace --namespace prometheus \
149127
--generate-name \
150-
--values /tmp/values.yml
151-
128+
--values /tmp/kube-prometheus-stack.values \
129+
--set prometheus.service.type=LoadBalancer \
130+
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
131+
--set grafana.service.type=LoadBalancer
152132
NAME: kube-prometheus-stack-1647417678
153133
LAST DEPLOYED: Wed Mar 16 09:01:23 2022
154134
NAMESPACE: prometheus

pages/platform/kubernetes-k8s/monitoring-apps-grafana-prometheus/guide.en-au.md

Lines changed: 18 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ slug: monitoring-apps-prometheus-grafana
44
excerpt: 'Find out how to monitor and visualize metrics with Prometheus and Grafana on an OVHcloud Managed Kubernetes Service'
55
section: Monitoring & Observability
66
order: 00
7-
updated: 2022-03-16
7+
updated: 2023-03-15
88
---
99

1010
<style>
@@ -29,7 +29,7 @@ updated: 2022-03-16
2929
}
3030
</style>
3131

32-
**Last updated March 16, 2022.**
32+
**Last updated March 15, 2023.**
3333

3434
## Objective
3535

@@ -83,61 +83,39 @@ Hang tight while we grab the latest from your chart repositories...
8383
Update Complete. ⎈Happy Helming!⎈
8484
</code></pre>
8585

86-
You could need to modify some settings. To do this, you can set parameters on the command line (`--set param.name=value`) or create a local `values.yml` based on the values from the chart.
87-
To get all the possible parameters:
86+
You need to modify some settings. To do this, inspect the chart to retrieve these values ​​in a file:
8887

8988
```bash
90-
helm inspect values prometheus-community/kube-prometheus-stack
89+
helm inspect values prometheus-community/kube-prometheus-stack > /tmp/kube-prometheus-stack.values
9190
```
9291

93-
> [!primary]
94-
>
95-
> Some default values come from other charts, like Grafana for example: https://github.com/grafana/helm-charts/blob/main/charts/grafana/values.yaml
96-
>
92+
Open the `/tmp/kube-prometheus-stack.values` file in your favorite editor.
9793

98-
For example, a good practice is to change the default administrator password for Grafana.
99-
You can find it in the `grafana` section of the default values of the chart with the name `adminPassword`.
100-
Copy and save the Grafana admin password, you will use it later in this tutorial.
101-
You need change other parameters, like the service type for example.
102-
You can create a `/tmp/values.yml` as following to change these parameters:
103-
```yaml
104-
grafana:
105-
adminPassword: <my cool password>
106-
service:
107-
type: LoadBalancer
108-
109-
prometheus:
110-
prometheusSpec:
111-
serviceMonitorSelectorNilUsesHelmValues: false
112-
service:
113-
type: LoadBalancer
114-
```
94+
Then search into it for `adminPassword` and replace it with the password you want to use for Grafana.
11595

116-
You are now ready to install Prometheus and Grafana.
96+
By default, the Grafana password should be like this:
11797

118-
```bash
119-
helm install prometheus-community/kube-prometheus-stack \
120-
--create-namespace --namespace prometheus \
121-
--generate-name \
122-
--values /tmp/values.yml
98+
```yaml
99+
adminPassword: prom-operator
123100
```
124101
125-
Or you can directly set parameters to avoid creating a `values.yml`:
102+
Copy and save the Grafana admin password, you will use it later in this tutorial.
103+
104+
You are now ready to install Prometheus and Grafana.
126105
127106
```bash
128107
helm install prometheus-community/kube-prometheus-stack \
129108
--create-namespace --namespace prometheus \
130109
--generate-name \
110+
--values /tmp/kube-prometheus-stack.values \
131111
--set prometheus.service.type=LoadBalancer \
132112
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
133-
--set grafana.adminPAssword=<my cool password>
134113
--set grafana.service.type=LoadBalancer
135114
```
136115

137-
138116
> [!primary]
139117
>
140-
> You can choose to install or not some components, for example if you don't want Grafana just add `--set grafana.enabled=false` or add the `enabled: false` in the section `grafana` of the `/tmp/values.yml` file.
118+
> You can only install prometheus without Grafana by setting the following property to false: `--set grafana.enabled=false`
141119
>
142120
143121
As you can see, a new `prometheus` namespace will be created and we specified that we want to deploy a LoadBalancer in order to access externally to Prometheus and Grafana easily.
@@ -147,8 +125,10 @@ You should have a behavior like this:
147125
<pre class="console"><code>$ helm install prometheus-community/kube-prometheus-stack \
148126
--create-namespace --namespace prometheus \
149127
--generate-name \
150-
--values /tmp/values.yml
151-
128+
--values /tmp/kube-prometheus-stack.values \
129+
--set prometheus.service.type=LoadBalancer \
130+
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
131+
--set grafana.service.type=LoadBalancer
152132
NAME: kube-prometheus-stack-1647417678
153133
LAST DEPLOYED: Wed Mar 16 09:01:23 2022
154134
NAMESPACE: prometheus

pages/platform/kubernetes-k8s/monitoring-apps-grafana-prometheus/guide.en-ca.md

Lines changed: 18 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ slug: monitoring-apps-prometheus-grafana
44
excerpt: 'Find out how to monitor and visualize metrics with Prometheus and Grafana on an OVHcloud Managed Kubernetes Service'
55
section: Monitoring & Observability
66
order: 00
7-
updated: 2022-03-16
7+
updated: 2023-03-15
88
---
99

1010
<style>
@@ -29,7 +29,7 @@ updated: 2022-03-16
2929
}
3030
</style>
3131

32-
**Last updated March 16, 2022.**
32+
**Last updated March 15, 2023.**
3333

3434
## Objective
3535

@@ -83,61 +83,39 @@ Hang tight while we grab the latest from your chart repositories...
8383
Update Complete. ⎈Happy Helming!⎈
8484
</code></pre>
8585

86-
You could need to modify some settings. To do this, you can set parameters on the command line (`--set param.name=value`) or create a local `values.yml` based on the values from the chart.
87-
To get all the possible parameters:
86+
You need to modify some settings. To do this, inspect the chart to retrieve these values ​​in a file:
8887

8988
```bash
90-
helm inspect values prometheus-community/kube-prometheus-stack
89+
helm inspect values prometheus-community/kube-prometheus-stack > /tmp/kube-prometheus-stack.values
9190
```
9291

93-
> [!primary]
94-
>
95-
> Some default values come from other charts, like Grafana for example: https://github.com/grafana/helm-charts/blob/main/charts/grafana/values.yaml
96-
>
92+
Open the `/tmp/kube-prometheus-stack.values` file in your favorite editor.
9793

98-
For example, a good practice is to change the default administrator password for Grafana.
99-
You can find it in the `grafana` section of the default values of the chart with the name `adminPassword`.
100-
Copy and save the Grafana admin password, you will use it later in this tutorial.
101-
You need change other parameters, like the service type for example.
102-
You can create a `/tmp/values.yml` as following to change these parameters:
103-
```yaml
104-
grafana:
105-
adminPassword: <my cool password>
106-
service:
107-
type: LoadBalancer
108-
109-
prometheus:
110-
prometheusSpec:
111-
serviceMonitorSelectorNilUsesHelmValues: false
112-
service:
113-
type: LoadBalancer
114-
```
94+
Then search into it for `adminPassword` and replace it with the password you want to use for Grafana.
11595

116-
You are now ready to install Prometheus and Grafana.
96+
By default, the Grafana password should be like this:
11797

118-
```bash
119-
helm install prometheus-community/kube-prometheus-stack \
120-
--create-namespace --namespace prometheus \
121-
--generate-name \
122-
--values /tmp/values.yml
98+
```yaml
99+
adminPassword: prom-operator
123100
```
124101
125-
Or you can directly set parameters to avoid creating a `values.yml`:
102+
Copy and save the Grafana admin password, you will use it later in this tutorial.
103+
104+
You are now ready to install Prometheus and Grafana.
126105
127106
```bash
128107
helm install prometheus-community/kube-prometheus-stack \
129108
--create-namespace --namespace prometheus \
130109
--generate-name \
110+
--values /tmp/kube-prometheus-stack.values \
131111
--set prometheus.service.type=LoadBalancer \
132112
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
133-
--set grafana.adminPAssword=<my cool password>
134113
--set grafana.service.type=LoadBalancer
135114
```
136115

137-
138116
> [!primary]
139117
>
140-
> You can choose to install or not some components, for example if you don't want Grafana just add `--set grafana.enabled=false` or add the `enabled: false` in the section `grafana` of the `/tmp/values.yml` file.
118+
> You can only install prometheus without Grafana by setting the following property to false: `--set grafana.enabled=false`
141119
>
142120
143121
As you can see, a new `prometheus` namespace will be created and we specified that we want to deploy a LoadBalancer in order to access externally to Prometheus and Grafana easily.
@@ -147,8 +125,10 @@ You should have a behavior like this:
147125
<pre class="console"><code>$ helm install prometheus-community/kube-prometheus-stack \
148126
--create-namespace --namespace prometheus \
149127
--generate-name \
150-
--values /tmp/values.yml
151-
128+
--values /tmp/kube-prometheus-stack.values \
129+
--set prometheus.service.type=LoadBalancer \
130+
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
131+
--set grafana.service.type=LoadBalancer
152132
NAME: kube-prometheus-stack-1647417678
153133
LAST DEPLOYED: Wed Mar 16 09:01:23 2022
154134
NAMESPACE: prometheus

0 commit comments

Comments
 (0)