├── .github ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json5 └── workflows │ ├── lint-test.yaml │ └── release.yaml ├── .gitignore ├── AGENTS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── artifacthub-repo.yml ├── ct.yaml └── helm └── oauth2-proxy ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── ci ├── default-values.yaml ├── extra-args-as-dict-values.yaml ├── extra-args-as-list-values.yaml ├── extra-env-tpl-values.yaml ├── extra-init-container.yaml ├── gateway-api-minimal.yaml ├── gateway-api.yaml ├── horizontal-pod-autoscaling-values.yaml ├── ingress-extra-paths-values.yaml ├── pdb-values.yaml ├── pod-security-context-values.yaml ├── redis-sentinel-array-values.yaml ├── redis-sentinel-comma-values.yaml ├── redis-standalone-values.yaml ├── servicemonitor-values.yaml └── tpl-values.yaml ├── scripts └── check-redis.sh ├── templates ├── NOTES.txt ├── _capabilities.tpl ├── _helpers.tpl ├── _ingress.tpl ├── configmap-authenticated-emails-file.yaml ├── configmap-wait-for-redis.yaml ├── configmap.yaml ├── deployment.yaml ├── deprecation.yaml ├── extra-manifests.yaml ├── google-secret.yaml ├── hpa.yaml ├── httproute.yaml ├── ingress.yaml ├── networkpolicy.yaml ├── poddisruptionbudget.yaml ├── redis-secret.yaml ├── secret-alpha.yaml ├── secret-authenticated-emails-file.yaml ├── secret-htpasswd-file.yaml ├── secret.yaml ├── service.yaml ├── serviceaccount.yaml └── servicemonitor.yaml └── values.yaml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/README.md -------------------------------------------------------------------------------- /artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/artifacthub-repo.yml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/ct.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/.helmignore -------------------------------------------------------------------------------- /helm/oauth2-proxy/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/Chart.lock -------------------------------------------------------------------------------- /helm/oauth2-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/Chart.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/README.md -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/default-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/extra-args-as-dict-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/extra-args-as-dict-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/extra-args-as-list-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/extra-args-as-list-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/extra-env-tpl-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/extra-env-tpl-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/extra-init-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/extra-init-container.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/gateway-api-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/gateway-api-minimal.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/gateway-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/gateway-api.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/horizontal-pod-autoscaling-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/horizontal-pod-autoscaling-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/ingress-extra-paths-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/ingress-extra-paths-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/pdb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/pdb-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/pod-security-context-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/pod-security-context-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/redis-sentinel-array-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/redis-sentinel-array-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/redis-sentinel-comma-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/redis-sentinel-comma-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/redis-standalone-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/redis-standalone-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/servicemonitor-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/servicemonitor-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/ci/tpl-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/ci/tpl-values.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/scripts/check-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/scripts/check-redis.sh -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/_capabilities.tpl -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/_ingress.tpl -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/configmap-authenticated-emails-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/configmap-authenticated-emails-file.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/configmap-wait-for-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/configmap-wait-for-redis.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/deprecation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/deprecation.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/google-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/google-secret.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/httproute.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/redis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/redis-secret.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/secret-alpha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/secret-alpha.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/secret-authenticated-emails-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/secret-authenticated-emails-file.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/secret-htpasswd-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/secret-htpasswd-file.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/secret.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/service.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/oauth2-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oauth2-proxy/manifests/HEAD/helm/oauth2-proxy/values.yaml --------------------------------------------------------------------------------