├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dco.yml └── dependabot.yml ├── .gitignore ├── .osdk-scorecard.yaml ├── .pipeline-config-ci.yaml ├── .pipeline-config-pr.yaml ├── .secrets.baseline ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── PROJECT ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── api └── v1alpha1 │ ├── finalizer.go │ ├── groupversion_info.go │ ├── operandbindinfo_types.go │ ├── operandconfig_types.go │ ├── operandregistry_types.go │ ├── operandrequest_types.go │ ├── operatorconfig_types.go │ └── zz_generated.deepcopy.go ├── base_images.json ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── operand-deployment-lifecycle-manager.clusterserviceversion.yaml │ ├── operator.ibm.com_operandbindinfos.yaml │ ├── operator.ibm.com_operandconfigs.yaml │ ├── operator.ibm.com_operandregistries.yaml │ ├── operator.ibm.com_operandrequests.yaml │ └── operator.ibm.com_operatorconfigs.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── common ├── Makefile.common.mk ├── config │ ├── .golangci.yml │ └── kind-config.yaml ├── manifest.yaml └── scripts │ ├── .githooks │ ├── make_lint-all.sh │ └── pre-commit │ ├── artifactory_config_docker.sh │ ├── create_bundle.sh │ ├── gobuild.sh │ ├── install-kubebuilder.sh │ ├── install-olm.sh │ ├── install-operator-sdk.sh │ ├── install-opm.sh │ ├── lint_copyright_banner.sh │ ├── lint_go.sh │ ├── multiarch_image.sh │ ├── next-csv.sh │ └── push-csv.sh ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── operator.ibm.com_operandbindinfos.yaml │ │ ├── operator.ibm.com_operandconfigs.yaml │ │ ├── operator.ibm.com_operandregistries.yaml │ │ ├── operator.ibm.com_operandrequests.yaml │ │ └── operator.ibm.com_operatorconfigs.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── label_in_operandbindinfos.yaml │ │ ├── label_in_operandconfigs.yaml │ │ ├── label_in_operandregistries.yaml │ │ ├── label_in_operandrequests.yaml │ │ └── label_in_operatorconfigs.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── e2e │ ├── crd │ │ ├── bases │ │ │ ├── operator.ibm.com_namespacescopes.yaml │ │ │ ├── operator.ibm.com_operandbindinfos.yaml │ │ │ ├── operator.ibm.com_operandconfigs.yaml │ │ │ ├── operator.ibm.com_operandregistries.yaml │ │ │ ├── operator.ibm.com_operandrequests.yaml │ │ │ └── operator.ibm.com_operatorconfigs.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ └── rbac │ │ ├── kustomization.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ └── service_account.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── operand-deployment-lifecycle-manager.clusterserviceversion.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── operandbindinfo_editor_role.yaml │ ├── operandbindinfo_viewer_role.yaml │ ├── operandconfig_editor_role.yaml │ ├── operandconfig_viewer_role.yaml │ ├── operandregistry_editor_role.yaml │ ├── operandregistry_viewer_role.yaml │ ├── operandrequest_editor_role.yaml │ ├── operandrequest_viewer_role.yaml │ ├── operatorconfig_editor_role.yaml │ ├── operatorconfig_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── kustomization.yaml │ ├── operator_v1alpha1_operandbindinfo.yaml │ ├── operator_v1alpha1_operandconfig.yaml │ ├── operator_v1alpha1_operandregistry.yaml │ ├── operator_v1alpha1_operandrequest.yaml │ └── operator_v1alpha1_operatorconfig.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── constant │ └── constant.go ├── k8sutil │ └── cache.go ├── namespacescope │ ├── namespacescope_controler_test.go │ ├── namespacescope_controller.go │ └── namespacescope_suite_test.go ├── operandbindinfo │ ├── operandbindinfo_controller.go │ ├── operandbindinfo_controller_test.go │ └── operandbindinfo_suite_test.go ├── operandconfig │ ├── operandconfig_controller.go │ ├── operandconfig_controller_test.go │ └── operandconfig_suite_test.go ├── operandregistry │ ├── operandregistry_controller.go │ ├── operandregistry_controller_test.go │ └── operandregistry_suite_test.go ├── operandrequest │ ├── operandrequest_controller.go │ ├── operandrequest_controller_test.go │ ├── operandrequest_suite_test.go │ ├── reconcile_operand.go │ ├── reconcile_operand_test.go │ ├── reconcile_operator.go │ └── reconcile_operator_test.go ├── operandrequestnoolm │ ├── operandrequestnoolm_controller.go │ ├── operandrequestnoolm_controller_test.go │ ├── operandrequestnoolm_suite_test.go │ ├── reconcile_operand.go │ └── reconcile_operator.go ├── operator │ ├── manager.go │ └── manager_test.go ├── operatorchecker │ └── operatorchecker_controller.go ├── operatorconfig │ ├── operatorconfig_controller.go │ └── operatorconfig_suite_test.go ├── testutil │ ├── packagemanifests_crd.yaml │ ├── test_data.go │ └── test_util.go └── util │ ├── merge.go │ ├── merge_test.go │ ├── multi_errors.go │ ├── multi_errors_test.go │ ├── util.go │ ├── util_suite_test.go │ └── util_test.go ├── docs ├── design │ ├── comparison-to-olm.md │ ├── create-cr-by-operandrequest.md │ └── operand-deployment-lifecycle-manager.md ├── dev │ ├── development.md │ └── e2e.md ├── images │ ├── before-update.png │ ├── create-operand-request.png │ ├── create-project.png │ ├── etcd-channel-after.png │ ├── etcd-channel-before.png │ ├── etcd-cluster-before.png │ ├── etcd-cluster-example-after.png │ ├── etcd-cluster-example-before.png │ ├── install-odlm-success.png │ ├── install-odlm.png │ ├── odlm-all-instances.png │ ├── odlm-arch.png │ ├── operand-request-create-done.png │ ├── operand-request-detail.png │ ├── operator-list.png │ ├── operator-source-list.png │ ├── search-install-odlm-preview.png │ └── search-odlm.png ├── install │ ├── install-with-kind.md │ ├── install-with-ocp-3.11.md │ └── install.md └── user │ ├── how-to-update-operandconfig.md │ ├── how-to-update-operandregistry.md │ └── how-to-use-operandBindInfo.md ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── helm-cluster-scoped ├── Chart.yaml ├── templates │ ├── operator.ibm.com_operandbindinfos.yaml │ ├── operator.ibm.com_operandconfigs.yaml │ ├── operator.ibm.com_operandregistries.yaml │ ├── operator.ibm.com_operandrequests.yaml │ └── operator.ibm.com_operatorconfigs.yaml └── values.yaml ├── helm ├── Chart.yaml ├── templates │ ├── operator-deployment.yaml │ └── rbac.yaml └── values.yaml ├── main.go ├── test └── e2e │ ├── constants.go │ ├── e2e_suite_test.go │ ├── helpers_test.go │ ├── odlm_test.go │ └── utils_test.go ├── triggerfile └── version └── version.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.osdk-scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.osdk-scorecard.yaml -------------------------------------------------------------------------------- /.pipeline-config-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.pipeline-config-ci.yaml -------------------------------------------------------------------------------- /.pipeline-config-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.pipeline-config-pr.yaml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/OWNERS -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /api/v1alpha1/finalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/finalizer.go -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/operandbindinfo_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/operandbindinfo_types.go -------------------------------------------------------------------------------- /api/v1alpha1/operandconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/operandconfig_types.go -------------------------------------------------------------------------------- /api/v1alpha1/operandregistry_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/operandregistry_types.go -------------------------------------------------------------------------------- /api/v1alpha1/operandrequest_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/operandrequest_types.go -------------------------------------------------------------------------------- /api/v1alpha1/operatorconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/operatorconfig_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /base_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/base_images.json -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/operand-deployment-lifecycle-manager.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operand-deployment-lifecycle-manager.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.ibm.com_operandbindinfos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operator.ibm.com_operandbindinfos.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.ibm.com_operandconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operator.ibm.com_operandconfigs.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.ibm.com_operandregistries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operator.ibm.com_operandregistries.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.ibm.com_operandrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operator.ibm.com_operandrequests.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.ibm.com_operatorconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/manifests/operator.ibm.com_operatorconfigs.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /common/Makefile.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/Makefile.common.mk -------------------------------------------------------------------------------- /common/config/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/config/.golangci.yml -------------------------------------------------------------------------------- /common/config/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/config/kind-config.yaml -------------------------------------------------------------------------------- /common/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/manifest.yaml -------------------------------------------------------------------------------- /common/scripts/.githooks/make_lint-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/.githooks/make_lint-all.sh -------------------------------------------------------------------------------- /common/scripts/.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/.githooks/pre-commit -------------------------------------------------------------------------------- /common/scripts/artifactory_config_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/artifactory_config_docker.sh -------------------------------------------------------------------------------- /common/scripts/create_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/create_bundle.sh -------------------------------------------------------------------------------- /common/scripts/gobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/gobuild.sh -------------------------------------------------------------------------------- /common/scripts/install-kubebuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/install-kubebuilder.sh -------------------------------------------------------------------------------- /common/scripts/install-olm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/install-olm.sh -------------------------------------------------------------------------------- /common/scripts/install-operator-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/install-operator-sdk.sh -------------------------------------------------------------------------------- /common/scripts/install-opm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/install-opm.sh -------------------------------------------------------------------------------- /common/scripts/lint_copyright_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/lint_copyright_banner.sh -------------------------------------------------------------------------------- /common/scripts/lint_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/lint_go.sh -------------------------------------------------------------------------------- /common/scripts/multiarch_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/multiarch_image.sh -------------------------------------------------------------------------------- /common/scripts/next-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/next-csv.sh -------------------------------------------------------------------------------- /common/scripts/push-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/common/scripts/push-csv.sh -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.ibm.com_operandbindinfos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/bases/operator.ibm.com_operandbindinfos.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.ibm.com_operandconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/bases/operator.ibm.com_operandconfigs.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.ibm.com_operandregistries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/bases/operator.ibm.com_operandregistries.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.ibm.com_operandrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/bases/operator.ibm.com_operandrequests.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.ibm.com_operatorconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/bases/operator.ibm.com_operatorconfigs.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/label_in_operandbindinfos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/patches/label_in_operandbindinfos.yaml -------------------------------------------------------------------------------- /config/crd/patches/label_in_operandconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/patches/label_in_operandconfigs.yaml -------------------------------------------------------------------------------- /config/crd/patches/label_in_operandregistries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/patches/label_in_operandregistries.yaml -------------------------------------------------------------------------------- /config/crd/patches/label_in_operandrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/patches/label_in_operandrequests.yaml -------------------------------------------------------------------------------- /config/crd/patches/label_in_operatorconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/crd/patches/label_in_operatorconfigs.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_namespacescopes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_namespacescopes.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_operandbindinfos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_operandbindinfos.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_operandconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_operandconfigs.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_operandregistries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_operandregistries.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_operandrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_operandrequests.yaml -------------------------------------------------------------------------------- /config/e2e/crd/bases/operator.ibm.com_operatorconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/bases/operator.ibm.com_operatorconfigs.yaml -------------------------------------------------------------------------------- /config/e2e/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/e2e/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/kustomization.yaml -------------------------------------------------------------------------------- /config/e2e/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/e2e/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/manager/manager.yaml -------------------------------------------------------------------------------- /config/e2e/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/e2e/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/rbac/role.yaml -------------------------------------------------------------------------------- /config/e2e/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/e2e/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/e2e/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/operandbindinfo_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandbindinfo_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandbindinfo_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandbindinfo_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandconfig_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandconfig_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandconfig_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandconfig_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandregistry_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandregistry_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandregistry_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandregistry_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandrequest_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandrequest_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/operandrequest_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operandrequest_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/operatorconfig_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operatorconfig_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/operatorconfig_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/operatorconfig_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1alpha1_operandbindinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/operator_v1alpha1_operandbindinfo.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1alpha1_operandconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/operator_v1alpha1_operandconfig.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1alpha1_operandregistry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/operator_v1alpha1_operandregistry.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1alpha1_operandrequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/operator_v1alpha1_operandrequest.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1alpha1_operatorconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/samples/operator_v1alpha1_operatorconfig.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/constant/constant.go -------------------------------------------------------------------------------- /controllers/k8sutil/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/k8sutil/cache.go -------------------------------------------------------------------------------- /controllers/namespacescope/namespacescope_controler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/namespacescope/namespacescope_controler_test.go -------------------------------------------------------------------------------- /controllers/namespacescope/namespacescope_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/namespacescope/namespacescope_controller.go -------------------------------------------------------------------------------- /controllers/namespacescope/namespacescope_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/namespacescope/namespacescope_suite_test.go -------------------------------------------------------------------------------- /controllers/operandbindinfo/operandbindinfo_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandbindinfo/operandbindinfo_controller.go -------------------------------------------------------------------------------- /controllers/operandbindinfo/operandbindinfo_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandbindinfo/operandbindinfo_controller_test.go -------------------------------------------------------------------------------- /controllers/operandbindinfo/operandbindinfo_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandbindinfo/operandbindinfo_suite_test.go -------------------------------------------------------------------------------- /controllers/operandconfig/operandconfig_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandconfig/operandconfig_controller.go -------------------------------------------------------------------------------- /controllers/operandconfig/operandconfig_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandconfig/operandconfig_controller_test.go -------------------------------------------------------------------------------- /controllers/operandconfig/operandconfig_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandconfig/operandconfig_suite_test.go -------------------------------------------------------------------------------- /controllers/operandregistry/operandregistry_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandregistry/operandregistry_controller.go -------------------------------------------------------------------------------- /controllers/operandregistry/operandregistry_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandregistry/operandregistry_controller_test.go -------------------------------------------------------------------------------- /controllers/operandregistry/operandregistry_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandregistry/operandregistry_suite_test.go -------------------------------------------------------------------------------- /controllers/operandrequest/operandrequest_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/operandrequest_controller.go -------------------------------------------------------------------------------- /controllers/operandrequest/operandrequest_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/operandrequest_controller_test.go -------------------------------------------------------------------------------- /controllers/operandrequest/operandrequest_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/operandrequest_suite_test.go -------------------------------------------------------------------------------- /controllers/operandrequest/reconcile_operand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/reconcile_operand.go -------------------------------------------------------------------------------- /controllers/operandrequest/reconcile_operand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/reconcile_operand_test.go -------------------------------------------------------------------------------- /controllers/operandrequest/reconcile_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/reconcile_operator.go -------------------------------------------------------------------------------- /controllers/operandrequest/reconcile_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequest/reconcile_operator_test.go -------------------------------------------------------------------------------- /controllers/operandrequestnoolm/operandrequestnoolm_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequestnoolm/operandrequestnoolm_controller.go -------------------------------------------------------------------------------- /controllers/operandrequestnoolm/operandrequestnoolm_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequestnoolm/operandrequestnoolm_controller_test.go -------------------------------------------------------------------------------- /controllers/operandrequestnoolm/operandrequestnoolm_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequestnoolm/operandrequestnoolm_suite_test.go -------------------------------------------------------------------------------- /controllers/operandrequestnoolm/reconcile_operand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequestnoolm/reconcile_operand.go -------------------------------------------------------------------------------- /controllers/operandrequestnoolm/reconcile_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operandrequestnoolm/reconcile_operator.go -------------------------------------------------------------------------------- /controllers/operator/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operator/manager.go -------------------------------------------------------------------------------- /controllers/operator/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operator/manager_test.go -------------------------------------------------------------------------------- /controllers/operatorchecker/operatorchecker_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operatorchecker/operatorchecker_controller.go -------------------------------------------------------------------------------- /controllers/operatorconfig/operatorconfig_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operatorconfig/operatorconfig_controller.go -------------------------------------------------------------------------------- /controllers/operatorconfig/operatorconfig_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/operatorconfig/operatorconfig_suite_test.go -------------------------------------------------------------------------------- /controllers/testutil/packagemanifests_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/testutil/packagemanifests_crd.yaml -------------------------------------------------------------------------------- /controllers/testutil/test_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/testutil/test_data.go -------------------------------------------------------------------------------- /controllers/testutil/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/testutil/test_util.go -------------------------------------------------------------------------------- /controllers/util/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/merge.go -------------------------------------------------------------------------------- /controllers/util/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/merge_test.go -------------------------------------------------------------------------------- /controllers/util/multi_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/multi_errors.go -------------------------------------------------------------------------------- /controllers/util/multi_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/multi_errors_test.go -------------------------------------------------------------------------------- /controllers/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/util.go -------------------------------------------------------------------------------- /controllers/util/util_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/util_suite_test.go -------------------------------------------------------------------------------- /controllers/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/controllers/util/util_test.go -------------------------------------------------------------------------------- /docs/design/comparison-to-olm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/design/comparison-to-olm.md -------------------------------------------------------------------------------- /docs/design/create-cr-by-operandrequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/design/create-cr-by-operandrequest.md -------------------------------------------------------------------------------- /docs/design/operand-deployment-lifecycle-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/design/operand-deployment-lifecycle-manager.md -------------------------------------------------------------------------------- /docs/dev/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/dev/development.md -------------------------------------------------------------------------------- /docs/dev/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/dev/e2e.md -------------------------------------------------------------------------------- /docs/images/before-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/before-update.png -------------------------------------------------------------------------------- /docs/images/create-operand-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/create-operand-request.png -------------------------------------------------------------------------------- /docs/images/create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/create-project.png -------------------------------------------------------------------------------- /docs/images/etcd-channel-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/etcd-channel-after.png -------------------------------------------------------------------------------- /docs/images/etcd-channel-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/etcd-channel-before.png -------------------------------------------------------------------------------- /docs/images/etcd-cluster-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/etcd-cluster-before.png -------------------------------------------------------------------------------- /docs/images/etcd-cluster-example-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/etcd-cluster-example-after.png -------------------------------------------------------------------------------- /docs/images/etcd-cluster-example-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/etcd-cluster-example-before.png -------------------------------------------------------------------------------- /docs/images/install-odlm-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/install-odlm-success.png -------------------------------------------------------------------------------- /docs/images/install-odlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/install-odlm.png -------------------------------------------------------------------------------- /docs/images/odlm-all-instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/odlm-all-instances.png -------------------------------------------------------------------------------- /docs/images/odlm-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/odlm-arch.png -------------------------------------------------------------------------------- /docs/images/operand-request-create-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/operand-request-create-done.png -------------------------------------------------------------------------------- /docs/images/operand-request-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/operand-request-detail.png -------------------------------------------------------------------------------- /docs/images/operator-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/operator-list.png -------------------------------------------------------------------------------- /docs/images/operator-source-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/operator-source-list.png -------------------------------------------------------------------------------- /docs/images/search-install-odlm-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/search-install-odlm-preview.png -------------------------------------------------------------------------------- /docs/images/search-odlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/images/search-odlm.png -------------------------------------------------------------------------------- /docs/install/install-with-kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/install/install-with-kind.md -------------------------------------------------------------------------------- /docs/install/install-with-ocp-3.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/install/install-with-ocp-3.11.md -------------------------------------------------------------------------------- /docs/install/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/install/install.md -------------------------------------------------------------------------------- /docs/user/how-to-update-operandconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/user/how-to-update-operandconfig.md -------------------------------------------------------------------------------- /docs/user/how-to-update-operandregistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/user/how-to-update-operandregistry.md -------------------------------------------------------------------------------- /docs/user/how-to-use-operandBindInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/docs/user/how-to-use-operandBindInfo.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /helm-cluster-scoped/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/Chart.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/templates/operator.ibm.com_operandbindinfos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/templates/operator.ibm.com_operandbindinfos.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/templates/operator.ibm.com_operandconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/templates/operator.ibm.com_operandconfigs.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/templates/operator.ibm.com_operandregistries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/templates/operator.ibm.com_operandregistries.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/templates/operator.ibm.com_operandrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/templates/operator.ibm.com_operandrequests.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/templates/operator.ibm.com_operatorconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/templates/operator.ibm.com_operatorconfigs.yaml -------------------------------------------------------------------------------- /helm-cluster-scoped/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm-cluster-scoped/values.yaml -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/templates/operator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm/templates/operator-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/main.go -------------------------------------------------------------------------------- /test/e2e/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/test/e2e/constants.go -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/test/e2e/helpers_test.go -------------------------------------------------------------------------------- /test/e2e/odlm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/test/e2e/odlm_test.go -------------------------------------------------------------------------------- /test/e2e/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/test/e2e/utils_test.go -------------------------------------------------------------------------------- /triggerfile: -------------------------------------------------------------------------------- 1 | 20240424-1440 2 | -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/operand-deployment-lifecycle-manager/HEAD/version/version.go --------------------------------------------------------------------------------