├── .github ├── dependabot.yml ├── semantic.yaml └── workflows │ ├── build.yml │ └── fuzz.yaml ├── .gitignore ├── .helmignore ├── .shellcheckrc ├── CONTRIBUTING.md ├── Chart.yaml ├── LICENSE ├── Makefile ├── README.md ├── README.md.gotmpl ├── assets └── coder.svg ├── certs └── .gitkeep ├── examples ├── clientcerts │ └── clientcerts.values.yaml ├── ingress │ └── ingress.values.yaml ├── kind │ └── kind.values.yaml ├── offline │ └── offline.values.yaml └── openshift │ └── openshift.values.yaml ├── kube-linter.yaml ├── scripts ├── depfind │ ├── markdown.sh │ └── sh.sh ├── fmt.sh ├── install_deps.sh ├── lib.sh ├── package.sh ├── test_go.sh └── test_helm.sh ├── templates ├── NOTES.txt ├── _common.tpl ├── _environments.tpl ├── _functions.tpl ├── coderd.yaml ├── ingress.yaml ├── legacy.tpl ├── networkpolicies.yaml ├── psp.yaml ├── rbac.yaml └── timescale.yaml ├── tests ├── annotations_test.go ├── built_in_provider_test.go ├── client_tls_test.go ├── defaults_test.go ├── deployment_test.go ├── envs_test.go ├── examples_test.go ├── fuzz_test.go ├── go.mod ├── go.sum ├── healthz_test.go ├── images_test.go ├── ingress_test.go ├── network_policy_test.go ├── notes_test.go ├── postgres_test.go ├── proxy_test.go ├── rbac_test.go ├── utils.go └── values.go └── values.yaml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.github/semantic.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fuzz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.github/workflows/fuzz.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.swp 3 | .idea 4 | .vscode 5 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.helmignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/README.md -------------------------------------------------------------------------------- /README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/README.md.gotmpl -------------------------------------------------------------------------------- /assets/coder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/assets/coder.svg -------------------------------------------------------------------------------- /certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clientcerts/clientcerts.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/examples/clientcerts/clientcerts.values.yaml -------------------------------------------------------------------------------- /examples/ingress/ingress.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/examples/ingress/ingress.values.yaml -------------------------------------------------------------------------------- /examples/kind/kind.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/examples/kind/kind.values.yaml -------------------------------------------------------------------------------- /examples/offline/offline.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/examples/offline/offline.values.yaml -------------------------------------------------------------------------------- /examples/openshift/openshift.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/examples/openshift/openshift.values.yaml -------------------------------------------------------------------------------- /kube-linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/kube-linter.yaml -------------------------------------------------------------------------------- /scripts/depfind/markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/depfind/markdown.sh -------------------------------------------------------------------------------- /scripts/depfind/sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/depfind/sh.sh -------------------------------------------------------------------------------- /scripts/fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/fmt.sh -------------------------------------------------------------------------------- /scripts/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/install_deps.sh -------------------------------------------------------------------------------- /scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/lib.sh -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /scripts/test_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/test_go.sh -------------------------------------------------------------------------------- /scripts/test_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/scripts/test_helm.sh -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/_common.tpl -------------------------------------------------------------------------------- /templates/_environments.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/_environments.tpl -------------------------------------------------------------------------------- /templates/_functions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/_functions.tpl -------------------------------------------------------------------------------- /templates/coderd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/coderd.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/legacy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/legacy.tpl -------------------------------------------------------------------------------- /templates/networkpolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/networkpolicies.yaml -------------------------------------------------------------------------------- /templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/psp.yaml -------------------------------------------------------------------------------- /templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/rbac.yaml -------------------------------------------------------------------------------- /templates/timescale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/templates/timescale.yaml -------------------------------------------------------------------------------- /tests/annotations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/annotations_test.go -------------------------------------------------------------------------------- /tests/built_in_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/built_in_provider_test.go -------------------------------------------------------------------------------- /tests/client_tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/client_tls_test.go -------------------------------------------------------------------------------- /tests/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/defaults_test.go -------------------------------------------------------------------------------- /tests/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/deployment_test.go -------------------------------------------------------------------------------- /tests/envs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/envs_test.go -------------------------------------------------------------------------------- /tests/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/examples_test.go -------------------------------------------------------------------------------- /tests/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/fuzz_test.go -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/go.sum -------------------------------------------------------------------------------- /tests/healthz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/healthz_test.go -------------------------------------------------------------------------------- /tests/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/images_test.go -------------------------------------------------------------------------------- /tests/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/ingress_test.go -------------------------------------------------------------------------------- /tests/network_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/network_policy_test.go -------------------------------------------------------------------------------- /tests/notes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/notes_test.go -------------------------------------------------------------------------------- /tests/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/postgres_test.go -------------------------------------------------------------------------------- /tests/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/proxy_test.go -------------------------------------------------------------------------------- /tests/rbac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/rbac_test.go -------------------------------------------------------------------------------- /tests/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/utils.go -------------------------------------------------------------------------------- /tests/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/tests/values.go -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/enterprise-helm/HEAD/values.yaml --------------------------------------------------------------------------------