├── .bingo ├── .gitignore ├── README.md ├── Variables.mk ├── bingo.mod ├── bingo.sum ├── go.mod ├── golangci-lint.mod ├── golangci-lint.sum ├── goreleaser.mod ├── goreleaser.sum └── variables.env ├── .github ├── dependabot.yml └── workflows │ ├── add-to-project.yaml │ ├── ci.yml │ ├── go-apidiff.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .krew.yaml ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── assets └── demo │ ├── demo.gif │ ├── demo.sh │ └── gen-demo.sh ├── go.mod ├── go.sum ├── internal ├── cmd │ ├── catalog.go │ ├── catalog_add.go │ ├── catalog_list.go │ ├── catalog_remove.go │ ├── internal │ │ ├── log │ │ │ └── log.go │ │ └── olmv1 │ │ │ ├── action_suite_test.go │ │ │ ├── catalog_create.go │ │ │ ├── catalog_delete.go │ │ │ ├── catalog_installed_get.go │ │ │ ├── catalog_search.go │ │ │ ├── catalog_update.go │ │ │ ├── extension_delete.go │ │ │ ├── extension_install.go │ │ │ ├── extension_installed_get.go │ │ │ ├── extension_update.go │ │ │ ├── printing.go │ │ │ └── printing_test.go │ ├── olmv1.go │ ├── operator_describe.go │ ├── operator_install.go │ ├── operator_list.go │ ├── operator_list_available.go │ ├── operator_list_operands.go │ ├── operator_uninstall.go │ ├── operator_upgrade.go │ ├── root.go │ └── version.go ├── pkg │ ├── action │ │ ├── action_suite_test.go │ │ ├── catalog_add.go │ │ ├── catalog_list.go │ │ ├── catalog_remove.go │ │ ├── constants.go │ │ ├── helpers.go │ │ ├── operator_install.go │ │ ├── operator_list.go │ │ ├── operator_list_available.go │ │ ├── operator_uninstall.go │ │ ├── operator_uninstall_test.go │ │ └── operator_upgrade.go │ ├── catalogsource │ │ └── catalogsource.go │ ├── operand │ │ └── strategy.go │ ├── operator │ │ └── package.go │ ├── subscription │ │ └── subscription.go │ └── v1 │ │ ├── action │ │ ├── action_suite_test.go │ │ ├── catalog_create.go │ │ ├── catalog_create_test.go │ │ ├── catalog_delete.go │ │ ├── catalog_delete_test.go │ │ ├── catalog_installed_get.go │ │ ├── catalog_installed_get_test.go │ │ ├── catalog_search.go │ │ ├── catalog_update.go │ │ ├── catalog_update_test.go │ │ ├── errors.go │ │ ├── extension_delete.go │ │ ├── extension_delete_test.go │ │ ├── extension_install.go │ │ ├── extension_install_test.go │ │ ├── extension_installed_get.go │ │ ├── extension_installed_get_test.go │ │ ├── extension_update.go │ │ ├── extension_update_test.go │ │ ├── helpers.go │ │ └── interfaces.go │ │ └── client │ │ └── port_forward.go └── version │ └── version.go ├── main.go ├── olmv1.md └── pkg └── action ├── action_suite_test.go ├── config.go ├── operator_list_operands.go └── operator_list_operands_test.go /.bingo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/.gitignore -------------------------------------------------------------------------------- /.bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/README.md -------------------------------------------------------------------------------- /.bingo/Variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/Variables.mk -------------------------------------------------------------------------------- /.bingo/bingo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/bingo.mod -------------------------------------------------------------------------------- /.bingo/bingo.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/bingo.sum -------------------------------------------------------------------------------- /.bingo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/go.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/golangci-lint.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/golangci-lint.sum -------------------------------------------------------------------------------- /.bingo/goreleaser.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/goreleaser.mod -------------------------------------------------------------------------------- /.bingo/goreleaser.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/goreleaser.sum -------------------------------------------------------------------------------- /.bingo/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.bingo/variables.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.github/workflows/add-to-project.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/go-apidiff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.github/workflows/go-apidiff.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/.krew.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/assets/demo/demo.gif -------------------------------------------------------------------------------- /assets/demo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/assets/demo/demo.sh -------------------------------------------------------------------------------- /assets/demo/gen-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/assets/demo/gen-demo.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/catalog.go -------------------------------------------------------------------------------- /internal/cmd/catalog_add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/catalog_add.go -------------------------------------------------------------------------------- /internal/cmd/catalog_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/catalog_list.go -------------------------------------------------------------------------------- /internal/cmd/catalog_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/catalog_remove.go -------------------------------------------------------------------------------- /internal/cmd/internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/log/log.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/action_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/action_suite_test.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/catalog_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/catalog_create.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/catalog_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/catalog_delete.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/catalog_installed_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/catalog_installed_get.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/catalog_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/catalog_search.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/catalog_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/catalog_update.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/extension_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/extension_delete.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/extension_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/extension_install.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/extension_installed_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/extension_installed_get.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/extension_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/extension_update.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/printing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/printing.go -------------------------------------------------------------------------------- /internal/cmd/internal/olmv1/printing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/internal/olmv1/printing_test.go -------------------------------------------------------------------------------- /internal/cmd/olmv1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/olmv1.go -------------------------------------------------------------------------------- /internal/cmd/operator_describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_describe.go -------------------------------------------------------------------------------- /internal/cmd/operator_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_install.go -------------------------------------------------------------------------------- /internal/cmd/operator_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_list.go -------------------------------------------------------------------------------- /internal/cmd/operator_list_available.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_list_available.go -------------------------------------------------------------------------------- /internal/cmd/operator_list_operands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_list_operands.go -------------------------------------------------------------------------------- /internal/cmd/operator_uninstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_uninstall.go -------------------------------------------------------------------------------- /internal/cmd/operator_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/operator_upgrade.go -------------------------------------------------------------------------------- /internal/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/root.go -------------------------------------------------------------------------------- /internal/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/cmd/version.go -------------------------------------------------------------------------------- /internal/pkg/action/action_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/action_suite_test.go -------------------------------------------------------------------------------- /internal/pkg/action/catalog_add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/catalog_add.go -------------------------------------------------------------------------------- /internal/pkg/action/catalog_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/catalog_list.go -------------------------------------------------------------------------------- /internal/pkg/action/catalog_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/catalog_remove.go -------------------------------------------------------------------------------- /internal/pkg/action/constants.go: -------------------------------------------------------------------------------- 1 | package action 2 | 3 | const ( 4 | csvKind = "ClusterServiceVersion" 5 | ) 6 | -------------------------------------------------------------------------------- /internal/pkg/action/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/helpers.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_install.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_list.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_list_available.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_list_available.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_uninstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_uninstall.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_uninstall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_uninstall_test.go -------------------------------------------------------------------------------- /internal/pkg/action/operator_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/action/operator_upgrade.go -------------------------------------------------------------------------------- /internal/pkg/catalogsource/catalogsource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/catalogsource/catalogsource.go -------------------------------------------------------------------------------- /internal/pkg/operand/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/operand/strategy.go -------------------------------------------------------------------------------- /internal/pkg/operator/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/operator/package.go -------------------------------------------------------------------------------- /internal/pkg/subscription/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/subscription/subscription.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/action_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/action_suite_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_create.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_create_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_delete.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_delete_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_installed_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_installed_get.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_installed_get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_installed_get_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_search.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_update.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/catalog_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/catalog_update_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/errors.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_delete.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_delete_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_install.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_install_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_installed_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_installed_get.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_installed_get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_installed_get_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_update.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/extension_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/extension_update_test.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/helpers.go -------------------------------------------------------------------------------- /internal/pkg/v1/action/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/action/interfaces.go -------------------------------------------------------------------------------- /internal/pkg/v1/client/port_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/pkg/v1/client/port_forward.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/main.go -------------------------------------------------------------------------------- /olmv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/olmv1.md -------------------------------------------------------------------------------- /pkg/action/action_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/pkg/action/action_suite_test.go -------------------------------------------------------------------------------- /pkg/action/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/pkg/action/config.go -------------------------------------------------------------------------------- /pkg/action/operator_list_operands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/pkg/action/operator_list_operands.go -------------------------------------------------------------------------------- /pkg/action/operator_list_operands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/kubectl-operator/HEAD/pkg/action/operator_list_operands_test.go --------------------------------------------------------------------------------