Skip to content

Commit 501fb4e

Browse files
committed
add documentation
1 parent f188801 commit 501fb4e

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,52 @@
11
![Lint](https://github.com/OpenQAI/terraform-helm-release-prometheus-operator/workflows/Lint/badge.svg?branch=master)
22
### terraform-helm-release-prometheus-operator
3+
Installs prometheus-operator to create/configure/manage Prometheus clusters atop Kubernetes. This chart includes multiple components and is suitable for a variety of use-cases.
4+
5+
The default installation is intended to suit monitoring a kubernetes cluster the chart is deployed onto. It closely matches the kube-prometheus project.
6+
7+
- prometheus-operator
8+
- prometheus
9+
- alertmanager
10+
- node_exporter
11+
- kube-state-metrics
12+
- grafana
13+
- service-monitors
14+
- kube-apiserver
15+
- kube-scheduler
16+
- kube-controller-manager
17+
- etcd
18+
- kube-dns/coredns
19+
- kube-proxy
320

421
Description:
522
-
623
Deploys prometheus-operator helm chart.
724

825
Usage:
9-
- Deploy prometheus-operator without the default rules)
26+
- Deploy prometheus-operator without the default rules
1027

1128
```
1229
module "release-prometheus-operator" {
1330
source = "OpenQAI/release-prometheus-operator/helm"
1431
version = "0.0.X"
1532
1633
defaultRules_create = false
17-
helm_chart_version = "8.15.6"
34+
helm_chart_version = "8.15.11"
1835
helm_chart_namespace = "monitoring"
1936
skip_crds = false
2037
grafana_adminPassword = "pa$$w0rd"
2138
2239
}
2340
```
2441

25-
Usage
2642
- Deploy prometheus-operator with Grafana 7.0.3 and specified password in the namespace `monitoring`
2743

2844
```
2945
module "release-prometheus-operator" {
3046
source = "OpenQAI/release-prometheus-operator/helm"
3147
version = "0.0.X"
3248
33-
helm_chart_version = "8.15.6"
49+
helm_chart_version = "8.15.11"
3450
helm_chart_namespace = "monitoring"
3551
skip_crds = false
3652
grafana_image_tag = "7.0.3"

0 commit comments

Comments
 (0)