├── .bingo ├── .gitignore ├── README.md ├── Variables.mk ├── bingo.mod ├── bingo.sum ├── go.mod ├── golangci-lint.mod ├── golangci-lint.sum ├── goreleaser.mod ├── goreleaser.sum ├── setup-envtest.mod ├── setup-envtest.sum └── variables.env ├── .ci └── gpg │ ├── .gitignore │ ├── create-keyring.sh │ ├── pubring.auto │ └── secring.auto.gpg ├── .github ├── dependabot.yml ├── labeler.yml └── workflows │ ├── ci.yml │ ├── deploy.yml │ └── pr-labeler.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── docs ├── Welcome.md ├── project_layout.md └── tutorial.md ├── go.mod ├── go.sum ├── internal ├── cmd │ ├── helm-operator │ │ └── run │ │ │ └── cmd.go │ └── root.go ├── flags │ ├── flag.go │ ├── flag_test.go │ └── suite_test.go ├── metrics │ └── metrics.go ├── sdk │ └── controllerutil │ │ ├── controllerutil.go │ │ ├── controllerutil_suite_test.go │ │ └── controllerutil_test.go └── version │ └── version.go ├── main.go └── pkg ├── annotation ├── annotation.go ├── annotation_suite_test.go └── annotation_test.go ├── client ├── actionclient.go ├── actionclient_test.go ├── actionconfig.go ├── actionconfig_test.go ├── client_suite_test.go ├── ownerrefclient.go ├── postrenderer.go ├── postrenderer_test.go ├── restclientgetter.go └── restclientgetter_test.go ├── hook ├── hook.go ├── hook_suite_test.go └── hook_test.go ├── internal ├── fake │ └── controller.go ├── predicate │ └── predicates.go ├── status │ ├── conditions.go │ └── conditions_test.go ├── testdata │ ├── test-chart-1.2.0.tgz │ ├── test-chart-1.2.3.tgz │ └── test-chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ ├── testdata │ │ ├── test-chart-1.2.0.tgz │ │ ├── test-chart-1.2.3.tgz │ │ └── test-chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── values.yaml └── testutil │ └── testutil.go ├── manager ├── client_test.go ├── manager_suite_test.go ├── namespace.go └── namespace_test.go ├── manifestutil ├── manifest_suite_test.go ├── resourcepolicykeep.go └── resourcepolicykeep_test.go ├── reconciler ├── internal │ ├── conditions │ │ ├── conditions.go │ │ ├── conditions_suite_test.go │ │ └── conditions_test.go │ ├── diff │ │ └── diff.go │ ├── fake │ │ └── actionclient.go │ ├── hook │ │ ├── hook.go │ │ ├── hook_suite_test.go │ │ └── hook_test.go │ ├── updater │ │ ├── updater.go │ │ ├── updater_suite_test.go │ │ └── updater_test.go │ └── values │ │ ├── values.go │ │ ├── values_suite_test.go │ │ └── values_test.go ├── reconciler.go ├── reconciler_suite_test.go └── reconciler_test.go ├── storage ├── chunked.go ├── chunked_test.go ├── labels.go └── storage_suite_test.go ├── values └── values.go └── watches ├── watches.go ├── watches_suite_test.go └── watches_test.go /.bingo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/.gitignore -------------------------------------------------------------------------------- /.bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/README.md -------------------------------------------------------------------------------- /.bingo/Variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/Variables.mk -------------------------------------------------------------------------------- /.bingo/bingo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/bingo.mod -------------------------------------------------------------------------------- /.bingo/bingo.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/bingo.sum -------------------------------------------------------------------------------- /.bingo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/go.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/golangci-lint.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/golangci-lint.sum -------------------------------------------------------------------------------- /.bingo/goreleaser.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/goreleaser.mod -------------------------------------------------------------------------------- /.bingo/goreleaser.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/goreleaser.sum -------------------------------------------------------------------------------- /.bingo/setup-envtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/setup-envtest.mod -------------------------------------------------------------------------------- /.bingo/setup-envtest.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/setup-envtest.sum -------------------------------------------------------------------------------- /.bingo/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.bingo/variables.env -------------------------------------------------------------------------------- /.ci/gpg/.gitignore: -------------------------------------------------------------------------------- 1 | keyring 2 | -------------------------------------------------------------------------------- /.ci/gpg/create-keyring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.ci/gpg/create-keyring.sh -------------------------------------------------------------------------------- /.ci/gpg/pubring.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.ci/gpg/pubring.auto -------------------------------------------------------------------------------- /.ci/gpg/secring.auto.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.ci/gpg/secring.auto.gpg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/README.md -------------------------------------------------------------------------------- /docs/Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/docs/Welcome.md -------------------------------------------------------------------------------- /docs/project_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/docs/project_layout.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/helm-operator/run/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/cmd/helm-operator/run/cmd.go -------------------------------------------------------------------------------- /internal/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/cmd/root.go -------------------------------------------------------------------------------- /internal/flags/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/flags/flag.go -------------------------------------------------------------------------------- /internal/flags/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/flags/flag_test.go -------------------------------------------------------------------------------- /internal/flags/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/flags/suite_test.go -------------------------------------------------------------------------------- /internal/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/metrics/metrics.go -------------------------------------------------------------------------------- /internal/sdk/controllerutil/controllerutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/sdk/controllerutil/controllerutil.go -------------------------------------------------------------------------------- /internal/sdk/controllerutil/controllerutil_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/sdk/controllerutil/controllerutil_suite_test.go -------------------------------------------------------------------------------- /internal/sdk/controllerutil/controllerutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/sdk/controllerutil/controllerutil_test.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/main.go -------------------------------------------------------------------------------- /pkg/annotation/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/annotation/annotation.go -------------------------------------------------------------------------------- /pkg/annotation/annotation_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/annotation/annotation_suite_test.go -------------------------------------------------------------------------------- /pkg/annotation/annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/annotation/annotation_test.go -------------------------------------------------------------------------------- /pkg/client/actionclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/actionclient.go -------------------------------------------------------------------------------- /pkg/client/actionclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/actionclient_test.go -------------------------------------------------------------------------------- /pkg/client/actionconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/actionconfig.go -------------------------------------------------------------------------------- /pkg/client/actionconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/actionconfig_test.go -------------------------------------------------------------------------------- /pkg/client/client_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/client_suite_test.go -------------------------------------------------------------------------------- /pkg/client/ownerrefclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/ownerrefclient.go -------------------------------------------------------------------------------- /pkg/client/postrenderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/postrenderer.go -------------------------------------------------------------------------------- /pkg/client/postrenderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/postrenderer_test.go -------------------------------------------------------------------------------- /pkg/client/restclientgetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/restclientgetter.go -------------------------------------------------------------------------------- /pkg/client/restclientgetter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/client/restclientgetter_test.go -------------------------------------------------------------------------------- /pkg/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/hook/hook.go -------------------------------------------------------------------------------- /pkg/hook/hook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/hook/hook_suite_test.go -------------------------------------------------------------------------------- /pkg/hook/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/hook/hook_test.go -------------------------------------------------------------------------------- /pkg/internal/fake/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/fake/controller.go -------------------------------------------------------------------------------- /pkg/internal/predicate/predicates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/predicate/predicates.go -------------------------------------------------------------------------------- /pkg/internal/status/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/status/conditions.go -------------------------------------------------------------------------------- /pkg/internal/status/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/status/conditions_test.go -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart-1.2.0.tgz -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart-1.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart-1.2.3.tgz -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/.helmignore -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/Chart.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/service.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart-1.2.0.tgz -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart-1.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart-1.2.3.tgz -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/.helmignore -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/Chart.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/service.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/testdata/test-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/testdata/test-chart/values.yaml -------------------------------------------------------------------------------- /pkg/internal/testdata/test-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testdata/test-chart/values.yaml -------------------------------------------------------------------------------- /pkg/internal/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/internal/testutil/testutil.go -------------------------------------------------------------------------------- /pkg/manager/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manager/client_test.go -------------------------------------------------------------------------------- /pkg/manager/manager_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manager/manager_suite_test.go -------------------------------------------------------------------------------- /pkg/manager/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manager/namespace.go -------------------------------------------------------------------------------- /pkg/manager/namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manager/namespace_test.go -------------------------------------------------------------------------------- /pkg/manifestutil/manifest_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manifestutil/manifest_suite_test.go -------------------------------------------------------------------------------- /pkg/manifestutil/resourcepolicykeep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manifestutil/resourcepolicykeep.go -------------------------------------------------------------------------------- /pkg/manifestutil/resourcepolicykeep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/manifestutil/resourcepolicykeep_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/conditions/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/conditions/conditions.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/conditions/conditions_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/conditions/conditions_suite_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/conditions/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/conditions/conditions_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/diff/diff.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/fake/actionclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/fake/actionclient.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/hook/hook.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/hook/hook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/hook/hook_suite_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/hook/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/hook/hook_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/updater/updater.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/updater/updater_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/updater/updater_suite_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/updater/updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/updater/updater_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/values/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/values/values.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/values/values_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/values/values_suite_test.go -------------------------------------------------------------------------------- /pkg/reconciler/internal/values/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/internal/values/values_test.go -------------------------------------------------------------------------------- /pkg/reconciler/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/reconciler_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/reconciler_suite_test.go -------------------------------------------------------------------------------- /pkg/reconciler/reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/reconciler/reconciler_test.go -------------------------------------------------------------------------------- /pkg/storage/chunked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/storage/chunked.go -------------------------------------------------------------------------------- /pkg/storage/chunked_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/storage/chunked_test.go -------------------------------------------------------------------------------- /pkg/storage/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/storage/labels.go -------------------------------------------------------------------------------- /pkg/storage/storage_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/storage/storage_suite_test.go -------------------------------------------------------------------------------- /pkg/values/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/values/values.go -------------------------------------------------------------------------------- /pkg/watches/watches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/watches/watches.go -------------------------------------------------------------------------------- /pkg/watches/watches_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/watches/watches_suite_test.go -------------------------------------------------------------------------------- /pkg/watches/watches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/helm-operator-plugins/HEAD/pkg/watches/watches_test.go --------------------------------------------------------------------------------