├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── feature.md │ └── support.md ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yml ├── renovate.json └── workflows │ ├── deprecate.yaml │ ├── project-management.yml │ ├── push.yaml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── charts ├── avalanche │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── default-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── service-account.yaml │ │ ├── service-monitor.yaml │ │ ├── statefulset-avalanche.yaml │ │ └── svc-avalanche.yaml │ └── values.yaml ├── parca-agent │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── daemonset.yaml │ │ ├── pod-security-policy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service-acccount.yaml │ │ └── service.yaml │ └── values.yaml ├── parca-server │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deployment.yaml │ │ ├── pod-security-policy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service-acccount.yaml │ │ └── service.yaml │ └── values.yaml ├── promscale │ ├── Chart.yaml │ ├── README.md │ ├── UPGRADING.md │ ├── ci │ │ └── default-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deployment-promscale.yaml │ │ ├── prometheus-rule.yaml │ │ ├── secret-connection.yaml │ │ ├── service-account.yaml │ │ ├── service-monitor.yaml │ │ └── svc-promscale.yaml │ ├── values.schema.json │ └── values.yaml ├── timescaledb-multinode │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── admin-guide.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── job-attach-datanode.yaml │ │ ├── job-create-databases.yaml │ │ ├── sec-timescaledb.yaml │ │ ├── serviceaccount-timescaledb.yaml │ │ ├── statefulset-timescaledb-accessnode.yaml │ │ ├── statefulset-timescaledb-datanode.yaml │ │ ├── svc-timescaledb-access.yaml │ │ └── svc-timescaledb-data.yaml │ ├── timescaledb-multi.png │ └── values.yaml └── timescaledb-single │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ └── defaults-values.yaml │ ├── docs │ ├── admin-guide.md │ ├── timescaledb-single-backups.png │ ├── timescaledb-single.png │ └── upgrade-guide.md │ ├── examples │ ├── high_throughput.example.yaml-values.yaml │ ├── m5.large.example.yaml-values.yaml │ ├── multiple-tablespaces-values.yaml │ └── pgbouncer_customizations-values.yaml │ ├── scripts │ ├── patroni_callback.sh │ ├── pgbackrest_archive.sh │ ├── pgbackrest_archive_get.sh │ ├── pgbackrest_bootstrap.sh │ ├── pgbackrest_restore.sh │ ├── post_init.sh │ ├── prestop.sql │ ├── restore_or_initdb.sh │ └── tstune.sh │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap-patroni.yaml │ ├── configmap-pgbackrest.yaml │ ├── configmap-pgbouncer.yaml │ ├── configmap-scripts.yaml │ ├── job-update-patroni.yaml │ ├── networkpolicy.yaml │ ├── pgbackrest.yaml │ ├── podmonitor.yaml │ ├── role-timescaledb.yaml │ ├── rolebinding-timescaledb.yaml │ ├── secret-certificate.yaml │ ├── secret-patroni.yaml │ ├── secret-pgbackrest.yaml │ ├── serviceaccount-timescaledb.yaml │ ├── statefulset-timescaledb.yaml │ ├── svc-timescaledb-config.yaml │ ├── svc-timescaledb-replica.yaml │ └── svc-timescaledb.yaml │ ├── values.schema.json │ ├── values.schema.yaml │ └── values.yaml ├── ct.yaml ├── scripts ├── generate-promscale-alerts.sh └── load-images.sh ├── testdata ├── kind-1.23.yaml └── kind-1.24.yaml └── tests ├── custom-init-scripts.yaml ├── custom_pgbouncer_user_list.yaml ├── custom_secrets.yaml ├── values.yaml ├── verify_deployment.sh └── wait_for_example_job.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @timescale/o11y-services 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/ISSUE_TEMPLATE/support.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/deprecate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/workflows/deprecate.yaml -------------------------------------------------------------------------------- /.github/workflows/project-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/workflows/project-management.yml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/avalanche/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/Chart.yaml -------------------------------------------------------------------------------- /charts/avalanche/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/README.md -------------------------------------------------------------------------------- /charts/avalanche/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/avalanche/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/avalanche/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/templates/service-account.yaml -------------------------------------------------------------------------------- /charts/avalanche/templates/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/templates/service-monitor.yaml -------------------------------------------------------------------------------- /charts/avalanche/templates/statefulset-avalanche.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/templates/statefulset-avalanche.yaml -------------------------------------------------------------------------------- /charts/avalanche/templates/svc-avalanche.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/templates/svc-avalanche.yaml -------------------------------------------------------------------------------- /charts/avalanche/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/avalanche/values.yaml -------------------------------------------------------------------------------- /charts/parca-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/Chart.yaml -------------------------------------------------------------------------------- /charts/parca-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/README.md -------------------------------------------------------------------------------- /charts/parca-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/parca-agent/templates/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/cluster-role-binding.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/cluster-role.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/pod-security-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/pod-security-policy.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/role.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/service-acccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/service-acccount.yaml -------------------------------------------------------------------------------- /charts/parca-agent/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/templates/service.yaml -------------------------------------------------------------------------------- /charts/parca-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-agent/values.yaml -------------------------------------------------------------------------------- /charts/parca-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/Chart.yaml -------------------------------------------------------------------------------- /charts/parca-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/README.md -------------------------------------------------------------------------------- /charts/parca-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/parca-server/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/config.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/pod-security-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/pod-security-policy.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/role.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/service-acccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/service-acccount.yaml -------------------------------------------------------------------------------- /charts/parca-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/parca-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/parca-server/values.yaml -------------------------------------------------------------------------------- /charts/promscale/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/Chart.yaml -------------------------------------------------------------------------------- /charts/promscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/README.md -------------------------------------------------------------------------------- /charts/promscale/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/UPGRADING.md -------------------------------------------------------------------------------- /charts/promscale/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/promscale/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/config.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/deployment-promscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/deployment-promscale.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/prometheus-rule.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/secret-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/secret-connection.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/service-account.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/service-monitor.yaml -------------------------------------------------------------------------------- /charts/promscale/templates/svc-promscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/templates/svc-promscale.yaml -------------------------------------------------------------------------------- /charts/promscale/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/values.schema.json -------------------------------------------------------------------------------- /charts/promscale/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/promscale/values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/.helmignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /charts/timescaledb-multinode/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/Chart.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/README.md -------------------------------------------------------------------------------- /charts/timescaledb-multinode/admin-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/admin-guide.md -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/job-attach-datanode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/job-attach-datanode.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/job-create-databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/job-create-databases.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/sec-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/sec-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/serviceaccount-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/serviceaccount-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/statefulset-timescaledb-accessnode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/statefulset-timescaledb-accessnode.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/statefulset-timescaledb-datanode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/statefulset-timescaledb-datanode.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/svc-timescaledb-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/svc-timescaledb-access.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/templates/svc-timescaledb-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/templates/svc-timescaledb-data.yaml -------------------------------------------------------------------------------- /charts/timescaledb-multinode/timescaledb-multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/timescaledb-multi.png -------------------------------------------------------------------------------- /charts/timescaledb-multinode/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-multinode/values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/.helmignore: -------------------------------------------------------------------------------- 1 | *.png 2 | values.schema.yaml 3 | tmp/ 4 | -------------------------------------------------------------------------------- /charts/timescaledb-single/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/Chart.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/README.md -------------------------------------------------------------------------------- /charts/timescaledb-single/ci/defaults-values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 1 2 | -------------------------------------------------------------------------------- /charts/timescaledb-single/docs/admin-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/docs/admin-guide.md -------------------------------------------------------------------------------- /charts/timescaledb-single/docs/timescaledb-single-backups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/docs/timescaledb-single-backups.png -------------------------------------------------------------------------------- /charts/timescaledb-single/docs/timescaledb-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/docs/timescaledb-single.png -------------------------------------------------------------------------------- /charts/timescaledb-single/docs/upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/docs/upgrade-guide.md -------------------------------------------------------------------------------- /charts/timescaledb-single/examples/high_throughput.example.yaml-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/examples/high_throughput.example.yaml-values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/examples/m5.large.example.yaml-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/examples/m5.large.example.yaml-values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/examples/multiple-tablespaces-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/examples/multiple-tablespaces-values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/examples/pgbouncer_customizations-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/examples/pgbouncer_customizations-values.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/patroni_callback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/patroni_callback.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/pgbackrest_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/pgbackrest_archive.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/pgbackrest_archive_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/pgbackrest_archive_get.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/pgbackrest_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/pgbackrest_bootstrap.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/pgbackrest_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/pgbackrest_restore.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/post_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/post_init.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/prestop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/prestop.sql -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/restore_or_initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/restore_or_initdb.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/scripts/tstune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/scripts/tstune.sh -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/configmap-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/configmap-patroni.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/configmap-pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/configmap-pgbackrest.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/configmap-pgbouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/configmap-pgbouncer.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/configmap-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/configmap-scripts.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/job-update-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/job-update-patroni.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/pgbackrest.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/role-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/role-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/rolebinding-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/rolebinding-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/secret-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/secret-certificate.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/secret-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/secret-patroni.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/secret-pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/secret-pgbackrest.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/serviceaccount-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/serviceaccount-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/statefulset-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/statefulset-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/svc-timescaledb-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/svc-timescaledb-config.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/svc-timescaledb-replica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/svc-timescaledb-replica.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/templates/svc-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/templates/svc-timescaledb.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/values.schema.json -------------------------------------------------------------------------------- /charts/timescaledb-single/values.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/values.schema.yaml -------------------------------------------------------------------------------- /charts/timescaledb-single/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/charts/timescaledb-single/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /scripts/generate-promscale-alerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/scripts/generate-promscale-alerts.sh -------------------------------------------------------------------------------- /scripts/load-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/scripts/load-images.sh -------------------------------------------------------------------------------- /testdata/kind-1.23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/testdata/kind-1.23.yaml -------------------------------------------------------------------------------- /testdata/kind-1.24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/testdata/kind-1.24.yaml -------------------------------------------------------------------------------- /tests/custom-init-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/custom-init-scripts.yaml -------------------------------------------------------------------------------- /tests/custom_pgbouncer_user_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/custom_pgbouncer_user_list.yaml -------------------------------------------------------------------------------- /tests/custom_secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/custom_secrets.yaml -------------------------------------------------------------------------------- /tests/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/values.yaml -------------------------------------------------------------------------------- /tests/verify_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/verify_deployment.sh -------------------------------------------------------------------------------- /tests/wait_for_example_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timescale/helm-charts/HEAD/tests/wait_for_example_job.yaml --------------------------------------------------------------------------------