Skip to content

Commit 81a9ada

Browse files
committed
[+] move charts from pgwatch2 repo
1 parent 8a960d1 commit 81a9ada

Some content is hidden

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

61 files changed

+2801
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# pgwatch2-charts
2+
23
Chart templates for cybertec-postgresql/pgwatch2
4+
5+
## Disclaimer
6+
7+
All the templates in this folder are not meant to be used for production purposes directly, but rather require some
8+
additional customizations, like minimally using the most recent Docker image versions, changing the metric storage type,
9+
volume sizes and security adjustments.
10+
11+
Also the templates are not automatically tested on new releases or other changes, so please report any abnormal findings.

helm/.helmignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
24+
25+
grafana_dashboards/prometheus
26+
grafana_dashboards/influxdb/v5
27+
grafana_dashboards/influxdb/v6
28+
grafana_dashboards/influxdb/v7
29+
grafana_dashboards/postgres/v5
30+
grafana_dashboards/postgres/v6
31+
grafana_dashboards/postgres/v7

helm/Chart.lock

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
dependencies:
2+
- name: grafana
3+
repository: https://grafana.github.io/helm-charts
4+
version: 6.28.0
5+
- name: influxdb
6+
repository: https://helm.influxdata.com/
7+
version: 4.11.0
8+
- name: metallb
9+
repository: https://metallb.github.io/metallb
10+
version: 0.12.1
11+
- name: postgresql
12+
repository: https://charts.bitnami.com/bitnami
13+
version: 11.1.27
14+
digest: sha256:e9bfaa6e31e6cd4342fca59ce0eb4342d8554f93c47ac6da2f9a906a94e76515
15+
generated: "2022-05-25T13:43:40.575945883+03:00"

helm/Chart.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
apiVersion: v2
2+
name: pgwatch2
3+
description: A Helm chart for Kubernetes
4+
5+
# A chart can be either an 'application' or a 'library' chart.
6+
#
7+
# Application charts are a collection of templates that can be packaged into versioned archives
8+
# to be deployed.
9+
#
10+
# Library charts provide useful utilities or functions for the chart developer. They're included as
11+
# a dependency of application charts to inject those utilities and functions into the rendering
12+
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
13+
type: application
14+
15+
# This is the chart version. This version number should be incremented each time you make changes
16+
# to the chart and its templates, including the app version.
17+
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18+
version: 0.1.0
19+
20+
# This is the version number of the application being deployed. This version number should be
21+
# incremented each time you make changes to the application. Versions are not expected to
22+
# follow Semantic Versioning. They should reflect the version the application is using.
23+
# It is recommended to use it with quotes.
24+
appVersion: "1.9.0"
25+
dependencies:
26+
- name: grafana
27+
repository: https://grafana.github.io/helm-charts
28+
version: "6.28.0"
29+
condition: grafana.enabled
30+
- name: influxdb
31+
repository: https://helm.influxdata.com/
32+
version: "4.11.0"
33+
condition: influxdb.enabled
34+
- name: metallb
35+
repository: https://metallb.github.io/metallb
36+
version: "0.12.1"
37+
condition: metallb.enabled
38+
- name: postgresql
39+
repository: https://charts.bitnami.com/bitnami
40+
version: "11.1.27"
41+
condition: postgresql.enabled

helm/charts/grafana-6.28.0.tgz

31.1 KB
Binary file not shown.

helm/charts/influxdb-4.11.0.tgz

16.1 KB
Binary file not shown.

helm/charts/metallb-0.12.1.tgz

11.4 KB
Binary file not shown.

helm/charts/postgresql-11.1.27.tgz

53.6 KB
Binary file not shown.

helm/grafana_dashboards

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../grafana_dashboards

helm/templates/NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#TODO

0 commit comments

Comments
 (0)