├── .ci ├── hack │ ├── component_descriptor │ ├── doc.go │ ├── generate-controller-registration.sh │ ├── prepare_release │ └── set_dependency_version └── verify ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── feature.md │ └── support.md ├── dependabot.yaml ├── pull_request_template.md └── workflows │ ├── build.yaml │ ├── head-update.yaml │ ├── release.yaml │ └── vendor_gardener.yaml ├── .gitignore ├── .ocm ├── base-component.yaml └── branch-info.yaml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── Apache-2.0.txt └── CC-BY-4.0.txt ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── REUSE.toml ├── VERSION ├── cmd ├── Dockerfile └── apiserver-proxy-sidecar │ └── main.go ├── go.mod ├── go.sum ├── hack ├── cherry-pick-pull.sh ├── sast.sh ├── tools.go └── tools │ └── bin │ └── .gitkeep └── internal ├── app ├── app.go └── config.go ├── netif ├── mocks_test.go ├── netif.go └── netif_suite_test.go └── version └── version.go /.ci/hack/component_descriptor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/hack/component_descriptor -------------------------------------------------------------------------------- /.ci/hack/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/hack/doc.go -------------------------------------------------------------------------------- /.ci/hack/generate-controller-registration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/hack/generate-controller-registration.sh -------------------------------------------------------------------------------- /.ci/hack/prepare_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/hack/prepare_release -------------------------------------------------------------------------------- /.ci/hack/set_dependency_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/hack/set_dependency_version -------------------------------------------------------------------------------- /.ci/verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ci/verify -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .github 3 | .reuse 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/ISSUE_TEMPLATE/support.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/head-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/workflows/head-update.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/vendor_gardener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.github/workflows/vendor_gardener.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocm/base-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ocm/base-component.yaml -------------------------------------------------------------------------------- /.ocm/branch-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/.ocm/branch-info.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/REUSE.toml -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.20.0-dev -------------------------------------------------------------------------------- /cmd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/cmd/Dockerfile -------------------------------------------------------------------------------- /cmd/apiserver-proxy-sidecar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/cmd/apiserver-proxy-sidecar/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/go.sum -------------------------------------------------------------------------------- /hack/cherry-pick-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/hack/cherry-pick-pull.sh -------------------------------------------------------------------------------- /hack/sast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/hack/sast.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/tools/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/app/app.go -------------------------------------------------------------------------------- /internal/app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/app/config.go -------------------------------------------------------------------------------- /internal/netif/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/netif/mocks_test.go -------------------------------------------------------------------------------- /internal/netif/netif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/netif/netif.go -------------------------------------------------------------------------------- /internal/netif/netif_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/netif/netif_suite_test.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardener/apiserver-proxy/HEAD/internal/version/version.go --------------------------------------------------------------------------------