├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ └── publish-charts.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── charts └── temporal ├── .gitignore ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── ci ├── cassandra-es-values.yaml ├── postgres-es-values.yaml └── postgres-values.yaml ├── templates ├── NOTES.txt ├── _admintools-env.yaml ├── _helpers.tpl ├── admintools-deployment.yaml ├── frontend-ingress.yaml ├── server-configmap.yaml ├── server-deployment.yaml ├── server-dynamicconfigmap.yaml ├── server-job.yaml ├── server-pdb.yaml ├── server-secret.yaml ├── server-service-monitor.yaml ├── server-service.yaml ├── serviceaccount.yaml ├── tests │ └── test.yaml ├── web-deployment.yaml ├── web-ingress.yaml ├── web-pdb.yaml └── web-service.yaml ├── tests ├── admintools_deployment_test.yaml ├── deployment_test.go ├── go.mod ├── go.sum ├── job_test.go ├── server_deployment_test.yaml ├── server_job_test.yaml ├── server_secret_test.yaml ├── server_service_test.yaml └── web_service_test.yaml ├── values.yaml └── values ├── values.antiaffinity.yaml ├── values.archival.filestore.yaml ├── values.archival.gcloud.yaml ├── values.archival.s3.yaml ├── values.aurora-mysql.yaml ├── values.cassandra.yaml ├── values.cloudsqlproxy.yaml ├── values.dynamic_config.yaml ├── values.elasticsearch.yaml ├── values.mysql.yaml ├── values.ndc.yaml ├── values.postgresql.yaml ├── values.prometheus.external.yaml └── values.resources.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @temporalio/cgs 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-charts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/.github/workflows/publish-charts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Chart.lock 2 | /.idea 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/temporal/.gitignore: -------------------------------------------------------------------------------- 1 | /charts 2 | -------------------------------------------------------------------------------- /charts/temporal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/.helmignore -------------------------------------------------------------------------------- /charts/temporal/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/Chart.lock -------------------------------------------------------------------------------- /charts/temporal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/Chart.yaml -------------------------------------------------------------------------------- /charts/temporal/ci/cassandra-es-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/ci/cassandra-es-values.yaml -------------------------------------------------------------------------------- /charts/temporal/ci/postgres-es-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/ci/postgres-es-values.yaml -------------------------------------------------------------------------------- /charts/temporal/ci/postgres-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/ci/postgres-values.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/temporal/templates/_admintools-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/_admintools-env.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/temporal/templates/admintools-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/admintools-deployment.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/frontend-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/frontend-ingress.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-configmap.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-deployment.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-dynamicconfigmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-dynamicconfigmap.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-job.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-pdb.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-secret.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-service-monitor.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/server-service.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/tests/test.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/web-deployment.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/web-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/web-ingress.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/web-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/web-pdb.yaml -------------------------------------------------------------------------------- /charts/temporal/templates/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/templates/web-service.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/admintools_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/admintools_deployment_test.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/deployment_test.go -------------------------------------------------------------------------------- /charts/temporal/tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/go.mod -------------------------------------------------------------------------------- /charts/temporal/tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/go.sum -------------------------------------------------------------------------------- /charts/temporal/tests/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/job_test.go -------------------------------------------------------------------------------- /charts/temporal/tests/server_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/server_deployment_test.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/server_job_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/server_job_test.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/server_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/server_secret_test.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/server_service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/server_service_test.yaml -------------------------------------------------------------------------------- /charts/temporal/tests/web_service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/tests/web_service_test.yaml -------------------------------------------------------------------------------- /charts/temporal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.antiaffinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.antiaffinity.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.archival.filestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.archival.filestore.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.archival.gcloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.archival.gcloud.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.archival.s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.archival.s3.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.aurora-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.aurora-mysql.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.cassandra.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.cloudsqlproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.cloudsqlproxy.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.dynamic_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.dynamic_config.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.elasticsearch.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.mysql.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.ndc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.ndc.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.postgresql.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.prometheus.external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.prometheus.external.yaml -------------------------------------------------------------------------------- /charts/temporal/values/values.resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/helm-charts/HEAD/charts/temporal/values/values.resources.yaml --------------------------------------------------------------------------------