Skip to content

Commit e61c94f

Browse files
author
Ilianna Papastefanou
committed
feat: Add helm prometheus examples
1 parent 880ce63 commit e61c94f

File tree

157 files changed

+71603
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+71603
-0
lines changed

helm/.helmignore

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*~
18+
# Various IDEs
19+
.project
20+
.idea/
21+
*.tmproj
22+
# helm/charts
23+
OWNERS
24+
hack/
25+
ci/
26+
kube-prometheus-*.tgz
27+
28+
unittests/

helm/Chart.lock

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
dependencies:
2+
- name: kube-state-metrics
3+
repository: https://prometheus-community.github.io/helm-charts
4+
version: 3.4.2
5+
- name: prometheus-node-exporter
6+
repository: https://prometheus-community.github.io/helm-charts
7+
version: 2.0.4
8+
- name: grafana
9+
repository: https://grafana.github.io/helm-charts
10+
version: 6.16.4
11+
digest: sha256:58f3cc8bad821aed15028f02b642a7c7409584d70a609badaa733ac1386bbae7
12+
generated: "2021-09-04T16:11:37.453658312+02:00"

helm/Chart.yaml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
apiVersion: v2
2+
description: kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
3+
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
4+
engine: gotpl
5+
type: application
6+
maintainers:
7+
- name: vsliouniaev
8+
- name: bismarck
9+
- name: gianrubio
10+
11+
- name: gkarthiks
12+
13+
- name: scottrigby
14+
15+
- name: Xtigyro
16+
17+
name: kube-prometheus-stack
18+
sources:
19+
- https://github.com/prometheus-community/helm-charts
20+
- https://github.com/prometheus-operator/kube-prometheus
21+
version: 18.0.12
22+
appVersion: 0.50.0
23+
kubeVersion: ">=1.16.0-0"
24+
home: https://github.com/prometheus-operator/kube-prometheus
25+
keywords:
26+
- operator
27+
- prometheus
28+
- kube-prometheus
29+
annotations:
30+
"artifacthub.io/operator": "true"
31+
"artifacthub.io/links": |
32+
- name: Chart Source
33+
url: https://github.com/prometheus-community/helm-charts
34+
- name: Upstream Project
35+
url: https://github.com/prometheus-operator/kube-prometheus
36+
37+
dependencies:
38+
- name: kube-state-metrics
39+
version: "3.4.*"
40+
repository: https://prometheus-community.github.io/helm-charts
41+
condition: kubeStateMetrics.enabled
42+
- name: prometheus-node-exporter
43+
version: "2.0.*"
44+
repository: https://prometheus-community.github.io/helm-charts
45+
condition: nodeExporter.enabled
46+
- name: grafana
47+
version: "6.16.*"
48+
repository: https://grafana.github.io/helm-charts
49+
condition: grafana.enabled

helm/crds/crd-alertmanagerconfigs.yaml

+2,441
Large diffs are not rendered by default.

helm/crds/crd-alertmanagers.yaml

+4,899
Large diffs are not rendered by default.

helm/crds/crd-podmonitors.yaml

+583
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)