├── .github ├── FUNDING.yml ├── pull_request_template.md └── workflows │ └── nightly-merge.yml ├── .gitignore ├── .helmignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Chart.yaml ├── LICENSE.md ├── README.md ├── packaging-state ├── README.md ├── ignored-in-concourse └── ignored-in-distribution ├── templates ├── NOTES.txt ├── _helpers.tpl ├── namespace.yaml ├── postgres-config-override-configmap.yaml ├── postgres-env-configmap.yaml ├── postgres-secret.yaml ├── postgres-service.yaml ├── postgres-statefulset.yaml ├── required-check.yaml ├── web-api-svc.yaml ├── web-configmap.yaml ├── web-deployment.yaml ├── web-ingress.yaml ├── web-podsecuritypolicy.yaml ├── web-prometheus-svc.yaml ├── web-role.yaml ├── web-rolebinding.yaml ├── web-route.yaml ├── web-secrets.yaml ├── web-serviceaccount.yaml ├── web-servicemonitor.yaml ├── web-worker-gateway-svc.yaml ├── worker-deployment.yaml ├── worker-horizontal-pod-autoscaler.yaml ├── worker-podsecuritypolicy.yaml ├── worker-policy.yaml ├── worker-prestop-configmap.yaml ├── worker-role.yaml ├── worker-rolebinding.yaml ├── worker-secrets.yaml ├── worker-serviceaccount.yaml ├── worker-statefulset.yaml └── worker-svc.yaml ├── test └── unittest │ └── gateway-apis │ └── web-route-test.yaml └── values.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [taylorsilva] 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/nightly-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/.github/workflows/nightly-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/README.md -------------------------------------------------------------------------------- /packaging-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/packaging-state/README.md -------------------------------------------------------------------------------- /packaging-state/ignored-in-concourse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/packaging-state/ignored-in-concourse -------------------------------------------------------------------------------- /packaging-state/ignored-in-distribution: -------------------------------------------------------------------------------- 1 | LIVENESS_PROBE_FATAL_ERRORS 2 | POD_IP 3 | -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/namespace.yaml -------------------------------------------------------------------------------- /templates/postgres-config-override-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/postgres-config-override-configmap.yaml -------------------------------------------------------------------------------- /templates/postgres-env-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/postgres-env-configmap.yaml -------------------------------------------------------------------------------- /templates/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/postgres-secret.yaml -------------------------------------------------------------------------------- /templates/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/postgres-service.yaml -------------------------------------------------------------------------------- /templates/postgres-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/postgres-statefulset.yaml -------------------------------------------------------------------------------- /templates/required-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/required-check.yaml -------------------------------------------------------------------------------- /templates/web-api-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-api-svc.yaml -------------------------------------------------------------------------------- /templates/web-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-configmap.yaml -------------------------------------------------------------------------------- /templates/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-deployment.yaml -------------------------------------------------------------------------------- /templates/web-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-ingress.yaml -------------------------------------------------------------------------------- /templates/web-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /templates/web-prometheus-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-prometheus-svc.yaml -------------------------------------------------------------------------------- /templates/web-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-role.yaml -------------------------------------------------------------------------------- /templates/web-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-rolebinding.yaml -------------------------------------------------------------------------------- /templates/web-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-route.yaml -------------------------------------------------------------------------------- /templates/web-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-secrets.yaml -------------------------------------------------------------------------------- /templates/web-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-serviceaccount.yaml -------------------------------------------------------------------------------- /templates/web-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-servicemonitor.yaml -------------------------------------------------------------------------------- /templates/web-worker-gateway-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/web-worker-gateway-svc.yaml -------------------------------------------------------------------------------- /templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /templates/worker-horizontal-pod-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-horizontal-pod-autoscaler.yaml -------------------------------------------------------------------------------- /templates/worker-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /templates/worker-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-policy.yaml -------------------------------------------------------------------------------- /templates/worker-prestop-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-prestop-configmap.yaml -------------------------------------------------------------------------------- /templates/worker-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-role.yaml -------------------------------------------------------------------------------- /templates/worker-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-rolebinding.yaml -------------------------------------------------------------------------------- /templates/worker-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-secrets.yaml -------------------------------------------------------------------------------- /templates/worker-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-serviceaccount.yaml -------------------------------------------------------------------------------- /templates/worker-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-statefulset.yaml -------------------------------------------------------------------------------- /templates/worker-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/templates/worker-svc.yaml -------------------------------------------------------------------------------- /test/unittest/gateway-apis/web-route-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/test/unittest/gateway-apis/web-route-test.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concourse/concourse-chart/HEAD/values.yaml --------------------------------------------------------------------------------