├── .bingo ├── .gitignore ├── OWNERS ├── README.md ├── Variables.mk ├── bingo.mod ├── bingo.sum ├── controller-gen.mod ├── controller-gen.sum ├── crd-diff.mod ├── crd-diff.sum ├── crd-ref-docs.mod ├── crd-ref-docs.sum ├── go.mod ├── gojq.mod ├── gojq.sum ├── golangci-lint.mod ├── golangci-lint.sum ├── goreleaser.mod ├── goreleaser.sum ├── helm.mod ├── helm.sum ├── kind.mod ├── kind.sum ├── kustomize.mod ├── kustomize.sum ├── operator-sdk.mod ├── operator-sdk.sum ├── opm.mod ├── opm.sum ├── setup-envtest.mod ├── setup-envtest.sum ├── variables.env ├── yamlfmt.mod └── yamlfmt.sum ├── .claude └── commands │ └── test-profile.md ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── docs-issue.yml ├── OWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── add-to-project.yaml │ ├── crd-diff.yaml │ ├── e2e.yaml │ ├── go-apidiff.yaml │ ├── go-verdiff.yaml │ ├── pages.yaml │ ├── pr-title.yaml │ ├── release.yaml │ ├── sanity.yaml │ ├── stale.yml │ ├── test-regression.yaml │ ├── tilt.yaml │ ├── unit-test.yaml │ └── update-demos.yaml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yml ├── .tilt-support ├── .tiltignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── DCO ├── Dockerfile.catalogd ├── Dockerfile.operator-controller ├── LICENSE ├── Makefile ├── Makefile.venv ├── OWNERS ├── OWNERS_ALIASES ├── PROJECT ├── README.md ├── RELEASE.md ├── Tiltfile ├── api ├── OWNERS └── v1 │ ├── clustercatalog_types.go │ ├── clustercatalog_types_test.go │ ├── clusterextension_types.go │ ├── clusterextension_types_test.go │ ├── clusterextensionrevision_types.go │ ├── clusterextensionrevision_types_test.go │ ├── common_types.go │ ├── groupversion_info.go │ ├── suite_test.go │ └── zz_generated.deepcopy.go ├── cmd ├── OWNERS ├── catalogd │ └── main.go └── operator-controller │ └── main.go ├── codecov.yml ├── config ├── OWNERS ├── README.md └── samples │ ├── catalogd_operatorcatalog.yaml │ ├── kustomization.yaml │ └── olm_v1_clusterextension.yaml ├── crd-diff-config.yaml ├── dev ├── local-debugging-with-tilt-and-vscode.md └── podman │ ├── kind-with-registry-podman.sh │ └── setup-local-env-podman.md ├── docs ├── .gitignore ├── OWNERS ├── api-reference │ ├── catalogd-webserver.md │ ├── crd-ref-docs-gen-config.yaml │ └── olmv1-api-reference.md ├── assets │ └── logo.svg ├── concepts │ ├── controlling-catalog-selection.md │ ├── crd-upgrade-safety.md │ ├── permission-model.md │ ├── single-owner-objects.md │ ├── upgrade-support.md │ └── version-ranges.md ├── contribute │ ├── contributing.md │ └── developer.md ├── css │ └── extra.css ├── draft │ ├── OWNERS │ ├── api-reference │ │ ├── catalogd-webserver-metas-endpoint.md │ │ └── network-policies.md │ ├── howto │ │ ├── catalog-queries-metas-endpoint.md │ │ ├── consuming-metrics.md │ │ ├── enable-helm-chart-support.md │ │ ├── enable-webhook-support.md │ │ ├── profiling_with_pprof.md │ │ ├── rbac-permissions-checking.md │ │ ├── single-ownnamespace-install.md │ │ └── use-synthetic-permissions.md │ ├── project │ │ └── personas.md │ └── tutorials │ │ └── explore-available-content-metas-endpoint.md ├── getting-started │ └── olmv1_getting_started.md ├── howto │ ├── catalog-queries.md │ ├── derive-service-account.md │ ├── how-to-channel-based-upgrades.md │ ├── how-to-grant-api-access.md │ ├── how-to-pin-version.md │ ├── how-to-version-range-upgrades.md │ └── how-to-z-stream-upgrades.md ├── index.md ├── project │ ├── olmv1_architecture.md │ ├── olmv1_community.md │ ├── olmv1_design_decisions.md │ ├── olmv1_limitations.md │ ├── olmv1_roadmap.md │ └── public-api.md └── tutorials │ ├── add-catalog.md │ ├── downgrade-extension.md │ ├── explore-available-content.md │ ├── install-extension.md │ ├── uninstall-extension.md │ └── upgrade-extension.md ├── go.mod ├── go.sum ├── hack ├── OWNERS ├── boilerplate.go.txt ├── ci │ └── custom-linters │ │ ├── analyzers │ │ ├── analyzers_test.go │ │ ├── setuplognilerrorcheck.go │ │ └── testdata │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ └── cmd │ │ └── main.go ├── demo │ ├── catalogd-demo-script.sh │ ├── catalogd-metas-demo-script.sh │ ├── generate-asciidemo.sh │ ├── gzip-demo-script.sh │ ├── own-namespace-demo-script.sh │ ├── resources │ │ ├── own-namespace-demo.yaml │ │ ├── single-namespace-demo.yaml │ │ ├── synthetic-user-perms │ │ │ ├── argocd-clusterextension.yaml │ │ │ └── cegroup-admin-binding.yaml │ │ └── webhook-provider-certmanager │ │ │ ├── mutating-webhook-test.yaml │ │ │ ├── validating-webhook-test.yaml │ │ │ ├── webhook-operator-catalog.yaml │ │ │ └── webhook-operator-extension.yaml │ ├── single-namespace-demo-script.sh │ ├── synthetic-user-cluster-admin-demo-script.sh │ └── webhook-provider-certmanager-demo-script.sh ├── kind-config │ └── containerd │ │ └── certs.d │ │ ├── docker-registry.operator-controller-e2e.svc.cluster.local:5000 │ │ └── hosts.toml │ │ └── go.mod ├── test │ ├── e2e-coverage.sh │ ├── install-prometheus.sh │ └── pre-upgrade-setup.sh └── tools │ ├── .gitkeep │ ├── catalogs │ ├── README.md │ ├── download-catalog │ ├── find-bundle-image │ ├── generate-manifests │ ├── is-bundle-supported │ ├── lib │ │ ├── bundle.sh │ │ ├── collect-rbac.sh │ │ ├── hash.sh │ │ ├── manifests.sh │ │ ├── rbac.sh │ │ ├── unpack.sh │ │ └── utils.sh │ ├── list-compatible-bundles │ └── unpack-bundle │ ├── check-go-version.sh │ ├── crd-generator │ ├── README.md │ ├── main.go │ ├── main_test.go │ └── testdata │ │ ├── api │ │ └── v1 │ │ │ ├── clusterextension_types.go │ │ │ └── groupversion_info.go │ │ └── output │ │ ├── experimental │ │ └── olm.operatorframework.io_clusterextensions.yaml │ │ └── standard │ │ └── olm.operatorframework.io_clusterextensions.yaml │ ├── k8smaintainer │ ├── README.md │ └── main.go │ ├── test-profiling │ ├── README.md │ ├── cmd │ │ └── test-profile │ │ │ ├── analyze.go │ │ │ ├── collect.go │ │ │ ├── compare.go │ │ │ ├── main.go │ │ │ ├── root.go │ │ │ ├── run.go │ │ │ ├── start.go │ │ │ └── stop.go │ ├── go.mod │ ├── go.sum │ └── pkg │ │ ├── analyzer │ │ ├── analyzer.go │ │ └── analyzer_test.go │ │ ├── collector │ │ ├── collector.go │ │ └── collector_test.go │ │ ├── comparator │ │ ├── comparator.go │ │ └── comparator_test.go │ │ ├── config │ │ ├── config.go │ │ └── config_test.go │ │ └── kubernetes │ │ ├── portforward.go │ │ └── portforward_test.go │ ├── update-crds.sh │ ├── update-tls-profiles.sh │ └── validate_kindest_node.sh ├── helm ├── OWNERS ├── cert-manager.yaml ├── e2e.yaml ├── experimental.yaml ├── olmv1 │ ├── .helmignore │ ├── Chart.yaml │ ├── base │ │ ├── catalogd │ │ │ └── crd │ │ │ │ ├── experimental │ │ │ │ └── olm.operatorframework.io_clustercatalogs.yaml │ │ │ │ └── standard │ │ │ │ └── olm.operatorframework.io_clustercatalogs.yaml │ │ └── operator-controller │ │ │ └── crd │ │ │ ├── experimental │ │ │ ├── olm.operatorframework.io_clusterextensionrevisions.yaml │ │ │ └── olm.operatorframework.io_clusterextensions.yaml │ │ │ └── standard │ │ │ └── olm.operatorframework.io_clusterextensions.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cert-manager │ │ │ ├── certificate-cert-manager-olmv1-ca.yml │ │ │ ├── certificate-olmv1-system-catalogd-service-cert.yml │ │ │ ├── certificate-olmv1-system-operator-controller-cert.yml │ │ │ ├── clusterissuer-olmv1-ca.yml │ │ │ └── issuer-cert-manager-self-sign-issuer.yml │ │ ├── crds │ │ │ ├── customresourcedefinition-clustercatalogs.olm.operatorframework.io.yml │ │ │ ├── customresourcedefinition-clusterextensionrevisions.olm.operatorframework.io.yml │ │ │ └── customresourcedefinition-clusterextensions.olm.operatorframework.io.yml │ │ ├── deployment-olmv1-system-catalogd-controller-manager.yml │ │ ├── deployment-olmv1-system-operator-controller-controller-manager.yml │ │ ├── e2e │ │ │ ├── configmap-olmv1-system-e2e-registries-conf.yml │ │ │ ├── persistentvolumeclaim-olmv1-system-e2e-coverage.yml │ │ │ └── pod-olmv1-system-e2e-coverage-copy-pod.yml │ │ ├── mutatingwebhookconfiguration-catalogd-mutating-webhook-configuration.yml │ │ ├── namespace.yml │ │ ├── networkpolicy │ │ │ ├── networkpolicy-olmv1-system-catalogd-controller-manager.yml │ │ │ ├── networkpolicy-olmv1-system-default-deny-all-traffic.yml │ │ │ └── networkpolicy-olmv1-system-operator-controller-controller-manager.yml │ │ ├── openshift-catalogs │ │ │ ├── clustercatalog-openshift-certified-operators.yml │ │ │ ├── clustercatalog-openshift-community-operators.yml │ │ │ ├── clustercatalog-openshift-redhat-marketplace.yml │ │ │ └── clustercatalog-openshift-redhat-operators.yml │ │ ├── openshift │ │ │ ├── configmap-trusted-ca.yml │ │ │ ├── role-openshift-config-manager-role.yml │ │ │ └── rolebinding-openshift-config-manager-rolebinding.yml │ │ ├── poddisruptionbudget-olmv1-system-catalogd.yml │ │ ├── poddisruptionbudget-olmv1-system-operator-controller.yml │ │ ├── rbac │ │ │ ├── clusterrole-catalogd-manager-role.yml │ │ │ ├── clusterrole-common-metrics-reader.yml │ │ │ ├── clusterrole-common-proxy-role.yml │ │ │ ├── clusterrole-operator-controller-clusterextension-viewer-role.yml │ │ │ ├── clusterrole-operator-controller-manager-role.yml │ │ │ ├── clusterrolebinding-catalogd-manager-rolebinding.yml │ │ │ ├── clusterrolebinding-common-proxy-rolebinding.yml │ │ │ ├── clusterrolebinding-operator-controller-manager-rolebinding.yml │ │ │ ├── role-olmv1-system-catalogd-manager-role.yml │ │ │ ├── role-olmv1-system-common-leader-election-role.yml │ │ │ ├── role-olmv1-system-metrics-monitor-role.yml │ │ │ ├── role-olmv1-system-operator-controller-manager-role.yml │ │ │ ├── rolebinding-olmv1-system-common-leader-election-rolebinding.yml │ │ │ ├── rolebinding-olmv1-system-common-manager-rolebinding.yml │ │ │ └── rolebinding-olmv1-system-metrics-monitor-rolebinding.yml │ │ ├── service-olmv1-system-catalogd-service.yml │ │ ├── service-olmv1-system-operator-controller-service.yml │ │ ├── serviceaccount-olmv1-system-common-controller-manager.yml │ │ └── servicemonitor-olmv1-system-metrics-monitor.yml │ └── values.yaml ├── prom_experimental.yaml ├── prometheus │ ├── Chart.yaml │ ├── templates │ │ ├── clusterrole-prometheus.yml │ │ ├── clusterrolebinding-prometheus.yml │ │ ├── networkpolicy-prometheus.yml │ │ ├── prometheus-prometheus.yml │ │ ├── prometheusrule-controller-alerts.yml │ │ ├── secret-prometheus-metrics-token.yml │ │ ├── service-prometheus-service.yml │ │ ├── serviceaccount-prometheus.yml │ │ ├── servicemonitor-catalogd-controller-manager-metrics-monitor.yml │ │ ├── servicemonitor-kubelet.yml │ │ └── servicemonitor-operator-controller-controller-manager-metrics-monitor.yml │ └── values.yaml └── tilt.yaml ├── internal ├── catalogd │ ├── OWNERS │ ├── controllers │ │ └── core │ │ │ ├── clustercatalog_controller.go │ │ │ └── clustercatalog_controller_test.go │ ├── features │ │ └── features.go │ ├── garbagecollection │ │ ├── garbage_collector.go │ │ └── garbage_collector_test.go │ ├── metrics │ │ └── metrics.go │ ├── serverutil │ │ ├── serverutil.go │ │ └── serverutil_test.go │ ├── storage │ │ ├── http_preconditions_check.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── localdir.go │ │ ├── localdir_test.go │ │ └── storage.go │ └── webhook │ │ ├── cluster_catalog_webhook.go │ │ └── cluster_catalog_webhook_test.go ├── operator-controller │ ├── OWNERS │ ├── action │ │ ├── error │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── helm.go │ │ ├── helm_test.go │ │ ├── restconfig.go │ │ ├── restconfig_test.go │ │ └── storagedriver.go │ ├── applier │ │ ├── boxcutter.go │ │ ├── boxcutter_test.go │ │ ├── helm.go │ │ ├── helm_test.go │ │ ├── phase.go │ │ ├── phase_test.go │ │ ├── preflight.go │ │ ├── provider.go │ │ └── provider_test.go │ ├── authentication │ │ ├── synthetic.go │ │ ├── synthetic_test.go │ │ ├── tokengetter.go │ │ ├── tokengetter_test.go │ │ └── tripper.go │ ├── authorization │ │ ├── rbac.go │ │ └── rbac_test.go │ ├── bundleutil │ │ ├── bundle.go │ │ └── bundle_test.go │ ├── catalogmetadata │ │ ├── cache │ │ │ ├── cache.go │ │ │ └── cache_test.go │ │ ├── client │ │ │ ├── client.go │ │ │ └── client_test.go │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── compare_test.go │ │ └── filter │ │ │ ├── bundle_predicates.go │ │ │ ├── bundle_predicates_test.go │ │ │ ├── successors.go │ │ │ └── successors_test.go │ ├── conditionsets │ │ └── conditionsets.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ └── error_formatting_test.go │ ├── contentmanager │ │ ├── cache │ │ │ ├── cache.go │ │ │ └── cache_test.go │ │ ├── contentmanager.go │ │ ├── source │ │ │ ├── dynamicsource.go │ │ │ ├── dynamicsource_test.go │ │ │ └── internal │ │ │ │ └── eventhandler.go │ │ └── sourcerer.go │ ├── controllers │ │ ├── boxcutter_reconcile_steps.go │ │ ├── clustercatalog_controller.go │ │ ├── clustercatalog_controller_test.go │ │ ├── clusterextension_admission_test.go │ │ ├── clusterextension_controller.go │ │ ├── clusterextension_controller_test.go │ │ ├── clusterextension_reconcile_steps.go │ │ ├── clusterextensionrevision_controller.go │ │ ├── clusterextensionrevision_controller_internal_test.go │ │ ├── clusterextensionrevision_controller_test.go │ │ ├── common_controller.go │ │ ├── common_controller_test.go │ │ ├── suite_test.go │ │ └── testhelpers_test.go │ ├── features │ │ └── features.go │ ├── finalizers │ │ └── finalizers.go │ ├── labels │ │ └── labels.go │ ├── resolve │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── resolver.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── rukpak │ │ ├── bundle │ │ │ ├── registryv1.go │ │ │ └── source │ │ │ │ ├── source.go │ │ │ │ └── source_test.go │ │ ├── operator-registry │ │ │ └── registry.go │ │ ├── preflights │ │ │ └── crdupgradesafety │ │ │ │ ├── crdupgradesafety.go │ │ │ │ ├── crdupgradesafety_test.go │ │ │ │ ├── testdata │ │ │ │ └── manifests │ │ │ │ │ ├── crd-conversion-no-webhook-extra-issue.json │ │ │ │ │ ├── crd-conversion-no-webhook.json │ │ │ │ │ ├── crd-conversion-webhook-old.json │ │ │ │ │ ├── crd-conversion-webhook.json │ │ │ │ │ ├── crd-description-changed.json │ │ │ │ │ ├── crd-field-removed.json │ │ │ │ │ ├── crd-invalid │ │ │ │ │ ├── crd-invalid-upgrade.json │ │ │ │ │ ├── crd-unhandled-new.json │ │ │ │ │ ├── crd-unhandled-old.json │ │ │ │ │ ├── crd-valid-upgrade.json │ │ │ │ │ ├── no-crds.json │ │ │ │ │ └── old-crd.json │ │ │ │ └── unhandled_message_test.go │ │ ├── render │ │ │ ├── certprovider.go │ │ │ ├── certprovider_test.go │ │ │ ├── certproviders │ │ │ │ ├── certmanager.go │ │ │ │ ├── certmanager_test.go │ │ │ │ ├── openshift_serviceca.go │ │ │ │ └── openshift_serviceca_test.go │ │ │ ├── fake.go │ │ │ ├── registryv1 │ │ │ │ ├── generators │ │ │ │ │ ├── generators.go │ │ │ │ │ ├── generators_test.go │ │ │ │ │ ├── resources.go │ │ │ │ │ └── resources_test.go │ │ │ │ ├── registryv1.go │ │ │ │ ├── registryv1_test.go │ │ │ │ └── validators │ │ │ │ │ ├── validator.go │ │ │ │ │ └── validator_test.go │ │ │ ├── render.go │ │ │ └── render_test.go │ │ └── util │ │ │ ├── testing │ │ │ ├── bundlefs │ │ │ │ ├── bundlefs.go │ │ │ │ └── bundlefs_test.go │ │ │ ├── clusterserviceversion │ │ │ │ ├── builder.go │ │ │ │ └── builder_test.go │ │ │ └── testing.go │ │ │ ├── util.go │ │ │ └── util_test.go │ └── scheme │ │ └── scheme.go └── shared │ ├── controllers │ ├── pull_secret_controller.go │ └── pull_secret_controller_test.go │ ├── util │ ├── error │ │ └── terminal.go │ ├── featuregates │ │ ├── logging.go │ │ └── logging_test.go │ ├── filter │ │ ├── filter.go │ │ └── filter_test.go │ ├── fs │ │ ├── fs.go │ │ └── fs_test.go │ ├── hash │ │ ├── hash.go │ │ └── hash_test.go │ ├── http │ │ ├── certlog.go │ │ ├── certpoolwatcher.go │ │ ├── certpoolwatcher_test.go │ │ ├── certutil.go │ │ ├── certutil_test.go │ │ └── httputil.go │ ├── image │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── filters.go │ │ ├── filters_test.go │ │ ├── helm.go │ │ ├── helm_test.go │ │ ├── mocks.go │ │ ├── pull.go │ │ └── pull_test.go │ ├── pullsecretcache │ │ └── pullsecretcache.go │ ├── sa │ │ ├── serviceaccount.go │ │ └── serviceaccount_test.go │ ├── testutils │ │ ├── artifacts.go │ │ ├── summary.go │ │ ├── templates │ │ │ ├── alert.md.tmpl │ │ │ ├── mermaid_chart.md.tmpl │ │ │ └── summary.md.tmpl │ │ └── utils.go │ └── tlsprofiles │ │ ├── flags.go │ │ ├── mozilla_data.go │ │ ├── tlsprofiles.go │ │ └── tlsprofiles_test.go │ └── version │ └── version.go ├── kind-config.yaml ├── manifests ├── OWNERS ├── default-catalogs.yaml ├── experimental-e2e.yaml ├── experimental.yaml ├── standard-e2e.yaml └── standard.yaml ├── mkdocs.yml ├── netlify.toml ├── requirements.txt ├── runtime.txt ├── scripts ├── OWNERS └── install.tpl.sh ├── test ├── e2e │ ├── cluster_extension_install_test.go │ ├── e2e_suite_test.go │ ├── metrics_test.go │ ├── network_policy_test.go │ ├── single_namespace_support_test.go │ └── webhook_support_test.go ├── extension-developer-e2e │ ├── extension_developer_test.go │ └── setup.sh ├── helpers │ ├── feature_gates.go │ └── helpers.go ├── regression │ └── convert │ │ ├── convert_test.go │ │ ├── generate-manifests.go │ │ └── testdata │ │ ├── bundles │ │ ├── argocd-operator.v0.6.0 │ │ │ ├── manifests │ │ │ │ ├── argocd-operator-controller-manager-metrics-service_v1_service.yaml │ │ │ │ ├── argocd-operator-manager-config_v1_configmap.yaml │ │ │ │ ├── argocd-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml │ │ │ │ ├── argocd-operator.v0.6.0.clusterserviceversion.yaml │ │ │ │ ├── argoproj.io_applications.yaml │ │ │ │ ├── argoproj.io_applicationsets.yaml │ │ │ │ ├── argoproj.io_appprojects.yaml │ │ │ │ ├── argoproj.io_argocdexports.yaml │ │ │ │ └── argoproj.io_argocds.yaml │ │ │ └── metadata │ │ │ │ └── annotations.yaml │ │ └── webhook-operator.v0.0.5 │ │ │ ├── manifests │ │ │ ├── webhook-operator.clusterserviceversion.yaml │ │ │ └── webhook.operators.coreos.io_webhooktests.yaml │ │ │ └── metadata │ │ │ └── annotations.yaml │ │ └── expected-manifests │ │ ├── argocd-operator.v0.6.0 │ │ ├── all-namespaces │ │ │ ├── 00_clusterrole_argocd-operator-metrics-reader.yaml │ │ │ ├── 01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 02_clusterrole_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml │ │ │ ├── 03_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 04_clusterrolebinding_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml │ │ │ ├── 05_configmap_argocd-operator-manager-config.yaml │ │ │ ├── 06_customresourcedefinition_applications.argoproj.io.yaml │ │ │ ├── 07_customresourcedefinition_applicationsets.argoproj.io.yaml │ │ │ ├── 08_customresourcedefinition_appprojects.argoproj.io.yaml │ │ │ ├── 09_customresourcedefinition_argocdexports.argoproj.io.yaml │ │ │ ├── 10_customresourcedefinition_argocds.argoproj.io.yaml │ │ │ ├── 11_deployment_argocd-operator-controller-manager.yaml │ │ │ ├── 12_service_argocd-operator-controller-manager-metrics-service.yaml │ │ │ └── 13_serviceaccount_argocd-operator-controller-manager.yaml │ │ ├── own-namespace │ │ │ ├── 00_clusterrole_argocd-operator-metrics-reader.yaml │ │ │ ├── 01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 03_configmap_argocd-operator-manager-config.yaml │ │ │ ├── 04_customresourcedefinition_applications.argoproj.io.yaml │ │ │ ├── 05_customresourcedefinition_applicationsets.argoproj.io.yaml │ │ │ ├── 06_customresourcedefinition_appprojects.argoproj.io.yaml │ │ │ ├── 07_customresourcedefinition_argocdexports.argoproj.io.yaml │ │ │ ├── 08_customresourcedefinition_argocds.argoproj.io.yaml │ │ │ ├── 09_deployment_argocd-operator-controller-manager.yaml │ │ │ ├── 10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml │ │ │ ├── 11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml │ │ │ ├── 12_service_argocd-operator-controller-manager-metrics-service.yaml │ │ │ └── 13_serviceaccount_argocd-operator-controller-manager.yaml │ │ └── single-namespace │ │ │ ├── 00_clusterrole_argocd-operator-metrics-reader.yaml │ │ │ ├── 01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml │ │ │ ├── 03_configmap_argocd-operator-manager-config.yaml │ │ │ ├── 04_customresourcedefinition_applications.argoproj.io.yaml │ │ │ ├── 05_customresourcedefinition_applicationsets.argoproj.io.yaml │ │ │ ├── 06_customresourcedefinition_appprojects.argoproj.io.yaml │ │ │ ├── 07_customresourcedefinition_argocdexports.argoproj.io.yaml │ │ │ ├── 08_customresourcedefinition_argocds.argoproj.io.yaml │ │ │ ├── 09_deployment_argocd-operator-controller-manager.yaml │ │ │ ├── 10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml │ │ │ ├── 11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml │ │ │ ├── 12_service_argocd-operator-controller-manager-metrics-service.yaml │ │ │ └── 13_serviceaccount_argocd-operator-controller-manager.yaml │ │ └── webhook-operator.v0.0.5 │ │ └── all-webhook-types │ │ ├── 00_clusterrole_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml │ │ ├── 01_clusterrole_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml │ │ ├── 02_clusterrolebinding_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml │ │ ├── 03_clusterrolebinding_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml │ │ ├── 04_customresourcedefinition_webhooktests.webhook.operators.coreos.io.yaml │ │ ├── 05_deployment_webhook-operator-controller-manager.yaml │ │ ├── 06_mutatingwebhookconfiguration_mwebhooktest-v1.kb.io.yaml │ │ ├── 07_service_webhook-operator-controller-manager-service.yaml │ │ ├── 08_serviceaccount_webhook-operator-controller-manager.yaml │ │ └── 09_validatingwebhookconfiguration_vwebhooktest-v1.kb.io.yaml ├── upgrade-e2e │ ├── post_upgrade_test.go │ └── upgrade_e2e_suite_test.go └── utils.go └── testdata ├── .gitignore ├── Dockerfile ├── build-test-registry.sh ├── certs ├── empty │ └── empty.pem └── good │ ├── Amazon_Root_CA_1.pem │ ├── Amazon_Root_CA_2.pem │ └── Amazon_Root_CA_3.pem ├── images ├── bundles │ ├── own-namespace-operator │ │ └── v1.0.0 │ │ │ ├── manifests │ │ │ ├── olm.operatorframework.com_ownnamespaces.yaml │ │ │ └── ownnamespaceoperator.clusterserviceversion.yaml │ │ │ └── metadata │ │ │ └── annotations.yaml │ ├── single-namespace-operator │ │ └── v1.0.0 │ │ │ ├── manifests │ │ │ ├── olm.operatorframework.com_singlenamespaces.yaml │ │ │ └── singlenamespaceoperator.clusterserviceversion.yaml │ │ │ └── metadata │ │ │ └── annotations.yaml │ ├── test-operator │ │ ├── v1.0.0 │ │ │ ├── manifests │ │ │ │ ├── bundle.configmap.yaml │ │ │ │ ├── olm.operatorframework.com_olme2etest.yaml │ │ │ │ ├── script.configmap.yaml │ │ │ │ ├── testoperator.clusterserviceversion.yaml │ │ │ │ └── testoperator.networkpolicy.yaml │ │ │ └── metadata │ │ │ │ └── annotations.yaml │ │ └── v1.2.0 │ │ │ ├── manifests │ │ │ ├── bundle.configmap.yaml │ │ │ ├── olm.operatorframework.com_olme2etest.yaml │ │ │ ├── script.configmap.yaml │ │ │ ├── testoperator.clusterserviceversion.yaml │ │ │ └── testoperator.networkpolicy.yaml │ │ │ └── metadata │ │ │ └── annotations.yaml │ └── webhook-operator │ │ └── v0.0.1 │ │ ├── manifests │ │ ├── webhook-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml │ │ ├── webhook-operator.clusterserviceversion.yaml │ │ └── webhook.operators.coreos.io_webhooktests.yaml │ │ └── metadata │ │ └── annotations.yaml └── catalogs │ └── test-catalog │ ├── v1 │ └── configs │ │ ├── .indexignore │ │ └── catalog.yaml │ └── v2 │ └── configs │ ├── .indexignore │ └── catalog.yaml └── push ├── README.md ├── go.mod ├── go.sum └── push.go /.bingo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/.gitignore -------------------------------------------------------------------------------- /.bingo/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/OWNERS -------------------------------------------------------------------------------- /.bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/README.md -------------------------------------------------------------------------------- /.bingo/Variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/Variables.mk -------------------------------------------------------------------------------- /.bingo/bingo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/bingo.mod -------------------------------------------------------------------------------- /.bingo/bingo.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/bingo.sum -------------------------------------------------------------------------------- /.bingo/controller-gen.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/controller-gen.mod -------------------------------------------------------------------------------- /.bingo/controller-gen.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/controller-gen.sum -------------------------------------------------------------------------------- /.bingo/crd-diff.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/crd-diff.mod -------------------------------------------------------------------------------- /.bingo/crd-diff.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/crd-diff.sum -------------------------------------------------------------------------------- /.bingo/crd-ref-docs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/crd-ref-docs.mod -------------------------------------------------------------------------------- /.bingo/crd-ref-docs.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/crd-ref-docs.sum -------------------------------------------------------------------------------- /.bingo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/go.mod -------------------------------------------------------------------------------- /.bingo/gojq.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/gojq.mod -------------------------------------------------------------------------------- /.bingo/gojq.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/gojq.sum -------------------------------------------------------------------------------- /.bingo/golangci-lint.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/golangci-lint.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/golangci-lint.sum -------------------------------------------------------------------------------- /.bingo/goreleaser.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/goreleaser.mod -------------------------------------------------------------------------------- /.bingo/goreleaser.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/goreleaser.sum -------------------------------------------------------------------------------- /.bingo/helm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/helm.mod -------------------------------------------------------------------------------- /.bingo/helm.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/helm.sum -------------------------------------------------------------------------------- /.bingo/kind.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/kind.mod -------------------------------------------------------------------------------- /.bingo/kind.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/kind.sum -------------------------------------------------------------------------------- /.bingo/kustomize.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/kustomize.mod -------------------------------------------------------------------------------- /.bingo/kustomize.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/kustomize.sum -------------------------------------------------------------------------------- /.bingo/operator-sdk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/operator-sdk.mod -------------------------------------------------------------------------------- /.bingo/operator-sdk.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/operator-sdk.sum -------------------------------------------------------------------------------- /.bingo/opm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/opm.mod -------------------------------------------------------------------------------- /.bingo/opm.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/opm.sum -------------------------------------------------------------------------------- /.bingo/setup-envtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/setup-envtest.mod -------------------------------------------------------------------------------- /.bingo/setup-envtest.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/setup-envtest.sum -------------------------------------------------------------------------------- /.bingo/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/variables.env -------------------------------------------------------------------------------- /.bingo/yamlfmt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/yamlfmt.mod -------------------------------------------------------------------------------- /.bingo/yamlfmt.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.bingo/yamlfmt.sum -------------------------------------------------------------------------------- /.claude/commands/test-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.claude/commands/test-profile.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/ISSUE_TEMPLATE/docs-issue.yml -------------------------------------------------------------------------------- /.github/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/OWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/add-to-project.yaml -------------------------------------------------------------------------------- /.github/workflows/crd-diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/crd-diff.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/go-apidiff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/go-apidiff.yaml -------------------------------------------------------------------------------- /.github/workflows/go-verdiff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/go-verdiff.yaml -------------------------------------------------------------------------------- /.github/workflows/pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/pages.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/pr-title.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/sanity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/sanity.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-regression.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/test-regression.yaml -------------------------------------------------------------------------------- /.github/workflows/tilt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/tilt.yaml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/unit-test.yaml -------------------------------------------------------------------------------- /.github/workflows/update-demos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.github/workflows/update-demos.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.tilt-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.tilt-support -------------------------------------------------------------------------------- /.tiltignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/.tiltignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile.catalogd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/Dockerfile.catalogd -------------------------------------------------------------------------------- /Dockerfile.operator-controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/Dockerfile.operator-controller -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.venv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/Makefile.venv -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/Tiltfile -------------------------------------------------------------------------------- /api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/OWNERS -------------------------------------------------------------------------------- /api/v1/clustercatalog_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clustercatalog_types.go -------------------------------------------------------------------------------- /api/v1/clustercatalog_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clustercatalog_types_test.go -------------------------------------------------------------------------------- /api/v1/clusterextension_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clusterextension_types.go -------------------------------------------------------------------------------- /api/v1/clusterextension_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clusterextension_types_test.go -------------------------------------------------------------------------------- /api/v1/clusterextensionrevision_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clusterextensionrevision_types.go -------------------------------------------------------------------------------- /api/v1/clusterextensionrevision_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/clusterextensionrevision_types_test.go -------------------------------------------------------------------------------- /api/v1/common_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/common_types.go -------------------------------------------------------------------------------- /api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/suite_test.go -------------------------------------------------------------------------------- /api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /cmd/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/cmd/OWNERS -------------------------------------------------------------------------------- /cmd/catalogd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/cmd/catalogd/main.go -------------------------------------------------------------------------------- /cmd/operator-controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/cmd/operator-controller/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/codecov.yml -------------------------------------------------------------------------------- /config/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/config/OWNERS -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/config/README.md -------------------------------------------------------------------------------- /config/samples/catalogd_operatorcatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/config/samples/catalogd_operatorcatalog.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/olm_v1_clusterextension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/config/samples/olm_v1_clusterextension.yaml -------------------------------------------------------------------------------- /crd-diff-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/crd-diff-config.yaml -------------------------------------------------------------------------------- /dev/local-debugging-with-tilt-and-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/dev/local-debugging-with-tilt-and-vscode.md -------------------------------------------------------------------------------- /dev/podman/kind-with-registry-podman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/dev/podman/kind-with-registry-podman.sh -------------------------------------------------------------------------------- /dev/podman/setup-local-env-podman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/dev/podman/setup-local-env-podman.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /docs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/OWNERS -------------------------------------------------------------------------------- /docs/api-reference/catalogd-webserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/api-reference/catalogd-webserver.md -------------------------------------------------------------------------------- /docs/api-reference/crd-ref-docs-gen-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/api-reference/crd-ref-docs-gen-config.yaml -------------------------------------------------------------------------------- /docs/api-reference/olmv1-api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/api-reference/olmv1-api-reference.md -------------------------------------------------------------------------------- /docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/concepts/controlling-catalog-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/controlling-catalog-selection.md -------------------------------------------------------------------------------- /docs/concepts/crd-upgrade-safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/crd-upgrade-safety.md -------------------------------------------------------------------------------- /docs/concepts/permission-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/permission-model.md -------------------------------------------------------------------------------- /docs/concepts/single-owner-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/single-owner-objects.md -------------------------------------------------------------------------------- /docs/concepts/upgrade-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/upgrade-support.md -------------------------------------------------------------------------------- /docs/concepts/version-ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/concepts/version-ranges.md -------------------------------------------------------------------------------- /docs/contribute/contributing.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/contribute/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/contribute/developer.md -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/draft/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/OWNERS -------------------------------------------------------------------------------- /docs/draft/api-reference/catalogd-webserver-metas-endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/api-reference/catalogd-webserver-metas-endpoint.md -------------------------------------------------------------------------------- /docs/draft/api-reference/network-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/api-reference/network-policies.md -------------------------------------------------------------------------------- /docs/draft/howto/catalog-queries-metas-endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/catalog-queries-metas-endpoint.md -------------------------------------------------------------------------------- /docs/draft/howto/consuming-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/consuming-metrics.md -------------------------------------------------------------------------------- /docs/draft/howto/enable-helm-chart-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/enable-helm-chart-support.md -------------------------------------------------------------------------------- /docs/draft/howto/enable-webhook-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/enable-webhook-support.md -------------------------------------------------------------------------------- /docs/draft/howto/profiling_with_pprof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/profiling_with_pprof.md -------------------------------------------------------------------------------- /docs/draft/howto/rbac-permissions-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/rbac-permissions-checking.md -------------------------------------------------------------------------------- /docs/draft/howto/single-ownnamespace-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/single-ownnamespace-install.md -------------------------------------------------------------------------------- /docs/draft/howto/use-synthetic-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/howto/use-synthetic-permissions.md -------------------------------------------------------------------------------- /docs/draft/project/personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/project/personas.md -------------------------------------------------------------------------------- /docs/draft/tutorials/explore-available-content-metas-endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/draft/tutorials/explore-available-content-metas-endpoint.md -------------------------------------------------------------------------------- /docs/getting-started/olmv1_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/getting-started/olmv1_getting_started.md -------------------------------------------------------------------------------- /docs/howto/catalog-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/catalog-queries.md -------------------------------------------------------------------------------- /docs/howto/derive-service-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/derive-service-account.md -------------------------------------------------------------------------------- /docs/howto/how-to-channel-based-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/how-to-channel-based-upgrades.md -------------------------------------------------------------------------------- /docs/howto/how-to-grant-api-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/how-to-grant-api-access.md -------------------------------------------------------------------------------- /docs/howto/how-to-pin-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/how-to-pin-version.md -------------------------------------------------------------------------------- /docs/howto/how-to-version-range-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/how-to-version-range-upgrades.md -------------------------------------------------------------------------------- /docs/howto/how-to-z-stream-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/howto/how-to-z-stream-upgrades.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/project/olmv1_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/olmv1_architecture.md -------------------------------------------------------------------------------- /docs/project/olmv1_community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/olmv1_community.md -------------------------------------------------------------------------------- /docs/project/olmv1_design_decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/olmv1_design_decisions.md -------------------------------------------------------------------------------- /docs/project/olmv1_limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/olmv1_limitations.md -------------------------------------------------------------------------------- /docs/project/olmv1_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/olmv1_roadmap.md -------------------------------------------------------------------------------- /docs/project/public-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/project/public-api.md -------------------------------------------------------------------------------- /docs/tutorials/add-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/add-catalog.md -------------------------------------------------------------------------------- /docs/tutorials/downgrade-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/downgrade-extension.md -------------------------------------------------------------------------------- /docs/tutorials/explore-available-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/explore-available-content.md -------------------------------------------------------------------------------- /docs/tutorials/install-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/install-extension.md -------------------------------------------------------------------------------- /docs/tutorials/uninstall-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/uninstall-extension.md -------------------------------------------------------------------------------- /docs/tutorials/upgrade-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/docs/tutorials/upgrade-extension.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/go.sum -------------------------------------------------------------------------------- /hack/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/OWNERS -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/ci/custom-linters/analyzers/analyzers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/analyzers/analyzers_test.go -------------------------------------------------------------------------------- /hack/ci/custom-linters/analyzers/setuplognilerrorcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/analyzers/setuplognilerrorcheck.go -------------------------------------------------------------------------------- /hack/ci/custom-linters/analyzers/testdata/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/analyzers/testdata/go.mod -------------------------------------------------------------------------------- /hack/ci/custom-linters/analyzers/testdata/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/analyzers/testdata/go.sum -------------------------------------------------------------------------------- /hack/ci/custom-linters/analyzers/testdata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/analyzers/testdata/main.go -------------------------------------------------------------------------------- /hack/ci/custom-linters/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/ci/custom-linters/cmd/main.go -------------------------------------------------------------------------------- /hack/demo/catalogd-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/catalogd-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/catalogd-metas-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/catalogd-metas-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/generate-asciidemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/generate-asciidemo.sh -------------------------------------------------------------------------------- /hack/demo/gzip-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/gzip-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/own-namespace-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/own-namespace-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/resources/own-namespace-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/own-namespace-demo.yaml -------------------------------------------------------------------------------- /hack/demo/resources/single-namespace-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/single-namespace-demo.yaml -------------------------------------------------------------------------------- /hack/demo/resources/synthetic-user-perms/argocd-clusterextension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/synthetic-user-perms/argocd-clusterextension.yaml -------------------------------------------------------------------------------- /hack/demo/resources/synthetic-user-perms/cegroup-admin-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/synthetic-user-perms/cegroup-admin-binding.yaml -------------------------------------------------------------------------------- /hack/demo/resources/webhook-provider-certmanager/mutating-webhook-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/webhook-provider-certmanager/mutating-webhook-test.yaml -------------------------------------------------------------------------------- /hack/demo/resources/webhook-provider-certmanager/validating-webhook-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/webhook-provider-certmanager/validating-webhook-test.yaml -------------------------------------------------------------------------------- /hack/demo/resources/webhook-provider-certmanager/webhook-operator-catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/webhook-provider-certmanager/webhook-operator-catalog.yaml -------------------------------------------------------------------------------- /hack/demo/resources/webhook-provider-certmanager/webhook-operator-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/resources/webhook-provider-certmanager/webhook-operator-extension.yaml -------------------------------------------------------------------------------- /hack/demo/single-namespace-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/single-namespace-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/synthetic-user-cluster-admin-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/synthetic-user-cluster-admin-demo-script.sh -------------------------------------------------------------------------------- /hack/demo/webhook-provider-certmanager-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/demo/webhook-provider-certmanager-demo-script.sh -------------------------------------------------------------------------------- /hack/kind-config/containerd/certs.d/docker-registry.operator-controller-e2e.svc.cluster.local:5000/hosts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/kind-config/containerd/certs.d/docker-registry.operator-controller-e2e.svc.cluster.local:5000/hosts.toml -------------------------------------------------------------------------------- /hack/kind-config/containerd/certs.d/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/kind-config/containerd/certs.d/go.mod -------------------------------------------------------------------------------- /hack/test/e2e-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/test/e2e-coverage.sh -------------------------------------------------------------------------------- /hack/test/install-prometheus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/test/install-prometheus.sh -------------------------------------------------------------------------------- /hack/test/pre-upgrade-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/test/pre-upgrade-setup.sh -------------------------------------------------------------------------------- /hack/tools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/tools/catalogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/README.md -------------------------------------------------------------------------------- /hack/tools/catalogs/download-catalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/download-catalog -------------------------------------------------------------------------------- /hack/tools/catalogs/find-bundle-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/find-bundle-image -------------------------------------------------------------------------------- /hack/tools/catalogs/generate-manifests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/generate-manifests -------------------------------------------------------------------------------- /hack/tools/catalogs/is-bundle-supported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/is-bundle-supported -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/bundle.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/collect-rbac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/collect-rbac.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/hash.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/manifests.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/rbac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/rbac.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/unpack.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/lib/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/lib/utils.sh -------------------------------------------------------------------------------- /hack/tools/catalogs/list-compatible-bundles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/list-compatible-bundles -------------------------------------------------------------------------------- /hack/tools/catalogs/unpack-bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/catalogs/unpack-bundle -------------------------------------------------------------------------------- /hack/tools/check-go-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/check-go-version.sh -------------------------------------------------------------------------------- /hack/tools/crd-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/README.md -------------------------------------------------------------------------------- /hack/tools/crd-generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/main.go -------------------------------------------------------------------------------- /hack/tools/crd-generator/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/main_test.go -------------------------------------------------------------------------------- /hack/tools/crd-generator/testdata/api/v1/clusterextension_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/testdata/api/v1/clusterextension_types.go -------------------------------------------------------------------------------- /hack/tools/crd-generator/testdata/api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/testdata/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /hack/tools/crd-generator/testdata/output/experimental/olm.operatorframework.io_clusterextensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/testdata/output/experimental/olm.operatorframework.io_clusterextensions.yaml -------------------------------------------------------------------------------- /hack/tools/crd-generator/testdata/output/standard/olm.operatorframework.io_clusterextensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/crd-generator/testdata/output/standard/olm.operatorframework.io_clusterextensions.yaml -------------------------------------------------------------------------------- /hack/tools/k8smaintainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/k8smaintainer/README.md -------------------------------------------------------------------------------- /hack/tools/k8smaintainer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/k8smaintainer/main.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/README.md -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/analyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/analyze.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/collect.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/compare.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/main.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/root.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/run.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/start.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/cmd/test-profile/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/cmd/test-profile/stop.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/go.mod -------------------------------------------------------------------------------- /hack/tools/test-profiling/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/go.sum -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/analyzer/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/analyzer/analyzer.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/analyzer/analyzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/analyzer/analyzer_test.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/collector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/collector/collector.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/collector/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/collector/collector_test.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/comparator/comparator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/comparator/comparator.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/comparator/comparator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/comparator/comparator_test.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/config/config.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/config/config_test.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/kubernetes/portforward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/kubernetes/portforward.go -------------------------------------------------------------------------------- /hack/tools/test-profiling/pkg/kubernetes/portforward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/test-profiling/pkg/kubernetes/portforward_test.go -------------------------------------------------------------------------------- /hack/tools/update-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/update-crds.sh -------------------------------------------------------------------------------- /hack/tools/update-tls-profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/update-tls-profiles.sh -------------------------------------------------------------------------------- /hack/tools/validate_kindest_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/hack/tools/validate_kindest_node.sh -------------------------------------------------------------------------------- /helm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/OWNERS -------------------------------------------------------------------------------- /helm/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/cert-manager.yaml -------------------------------------------------------------------------------- /helm/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/e2e.yaml -------------------------------------------------------------------------------- /helm/experimental.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/experimental.yaml -------------------------------------------------------------------------------- /helm/olmv1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/.helmignore -------------------------------------------------------------------------------- /helm/olmv1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/Chart.yaml -------------------------------------------------------------------------------- /helm/olmv1/base/catalogd/crd/experimental/olm.operatorframework.io_clustercatalogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/base/catalogd/crd/experimental/olm.operatorframework.io_clustercatalogs.yaml -------------------------------------------------------------------------------- /helm/olmv1/base/catalogd/crd/standard/olm.operatorframework.io_clustercatalogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/base/catalogd/crd/standard/olm.operatorframework.io_clustercatalogs.yaml -------------------------------------------------------------------------------- /helm/olmv1/base/operator-controller/crd/experimental/olm.operatorframework.io_clusterextensionrevisions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/base/operator-controller/crd/experimental/olm.operatorframework.io_clusterextensionrevisions.yaml -------------------------------------------------------------------------------- /helm/olmv1/base/operator-controller/crd/experimental/olm.operatorframework.io_clusterextensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/base/operator-controller/crd/experimental/olm.operatorframework.io_clusterextensions.yaml -------------------------------------------------------------------------------- /helm/olmv1/base/operator-controller/crd/standard/olm.operatorframework.io_clusterextensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/base/operator-controller/crd/standard/olm.operatorframework.io_clusterextensions.yaml -------------------------------------------------------------------------------- /helm/olmv1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/olmv1/templates/cert-manager/certificate-cert-manager-olmv1-ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/cert-manager/certificate-cert-manager-olmv1-ca.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/cert-manager/certificate-olmv1-system-catalogd-service-cert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/cert-manager/certificate-olmv1-system-catalogd-service-cert.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/cert-manager/certificate-olmv1-system-operator-controller-cert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/cert-manager/certificate-olmv1-system-operator-controller-cert.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/cert-manager/clusterissuer-olmv1-ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/cert-manager/clusterissuer-olmv1-ca.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/cert-manager/issuer-cert-manager-self-sign-issuer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/cert-manager/issuer-cert-manager-self-sign-issuer.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/crds/customresourcedefinition-clustercatalogs.olm.operatorframework.io.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/crds/customresourcedefinition-clustercatalogs.olm.operatorframework.io.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/crds/customresourcedefinition-clusterextensionrevisions.olm.operatorframework.io.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/crds/customresourcedefinition-clusterextensionrevisions.olm.operatorframework.io.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/crds/customresourcedefinition-clusterextensions.olm.operatorframework.io.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/crds/customresourcedefinition-clusterextensions.olm.operatorframework.io.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/deployment-olmv1-system-catalogd-controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/deployment-olmv1-system-catalogd-controller-manager.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/deployment-olmv1-system-operator-controller-controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/deployment-olmv1-system-operator-controller-controller-manager.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/e2e/configmap-olmv1-system-e2e-registries-conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/e2e/configmap-olmv1-system-e2e-registries-conf.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/e2e/persistentvolumeclaim-olmv1-system-e2e-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/e2e/persistentvolumeclaim-olmv1-system-e2e-coverage.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/e2e/pod-olmv1-system-e2e-coverage-copy-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/e2e/pod-olmv1-system-e2e-coverage-copy-pod.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/mutatingwebhookconfiguration-catalogd-mutating-webhook-configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/mutatingwebhookconfiguration-catalogd-mutating-webhook-configuration.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/namespace.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-catalogd-controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-catalogd-controller-manager.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-default-deny-all-traffic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-default-deny-all-traffic.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-operator-controller-controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/networkpolicy/networkpolicy-olmv1-system-operator-controller-controller-manager.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-certified-operators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-certified-operators.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-community-operators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-community-operators.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-redhat-marketplace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-redhat-marketplace.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-redhat-operators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift-catalogs/clustercatalog-openshift-redhat-operators.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift/configmap-trusted-ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift/configmap-trusted-ca.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift/role-openshift-config-manager-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift/role-openshift-config-manager-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/openshift/rolebinding-openshift-config-manager-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/openshift/rolebinding-openshift-config-manager-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/poddisruptionbudget-olmv1-system-catalogd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/poddisruptionbudget-olmv1-system-catalogd.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/poddisruptionbudget-olmv1-system-operator-controller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/poddisruptionbudget-olmv1-system-operator-controller.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrole-catalogd-manager-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrole-catalogd-manager-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrole-common-metrics-reader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrole-common-metrics-reader.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrole-common-proxy-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrole-common-proxy-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrole-operator-controller-clusterextension-viewer-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrole-operator-controller-clusterextension-viewer-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrole-operator-controller-manager-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrole-operator-controller-manager-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrolebinding-catalogd-manager-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrolebinding-catalogd-manager-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrolebinding-common-proxy-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrolebinding-common-proxy-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/clusterrolebinding-operator-controller-manager-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/clusterrolebinding-operator-controller-manager-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/role-olmv1-system-catalogd-manager-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/role-olmv1-system-catalogd-manager-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/role-olmv1-system-common-leader-election-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/role-olmv1-system-common-leader-election-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/role-olmv1-system-metrics-monitor-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/role-olmv1-system-metrics-monitor-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/role-olmv1-system-operator-controller-manager-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/role-olmv1-system-operator-controller-manager-role.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/rolebinding-olmv1-system-common-leader-election-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/rolebinding-olmv1-system-common-leader-election-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/rolebinding-olmv1-system-common-manager-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/rolebinding-olmv1-system-common-manager-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/rbac/rolebinding-olmv1-system-metrics-monitor-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/rbac/rolebinding-olmv1-system-metrics-monitor-rolebinding.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/service-olmv1-system-catalogd-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/service-olmv1-system-catalogd-service.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/service-olmv1-system-operator-controller-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/service-olmv1-system-operator-controller-service.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/serviceaccount-olmv1-system-common-controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/serviceaccount-olmv1-system-common-controller-manager.yml -------------------------------------------------------------------------------- /helm/olmv1/templates/servicemonitor-olmv1-system-metrics-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/templates/servicemonitor-olmv1-system-metrics-monitor.yml -------------------------------------------------------------------------------- /helm/olmv1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/olmv1/values.yaml -------------------------------------------------------------------------------- /helm/prom_experimental.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prom_experimental.yaml -------------------------------------------------------------------------------- /helm/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/Chart.yaml -------------------------------------------------------------------------------- /helm/prometheus/templates/clusterrole-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/clusterrole-prometheus.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/clusterrolebinding-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/clusterrolebinding-prometheus.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/networkpolicy-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/networkpolicy-prometheus.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/prometheus-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/prometheus-prometheus.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/prometheusrule-controller-alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/prometheusrule-controller-alerts.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/secret-prometheus-metrics-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/secret-prometheus-metrics-token.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/service-prometheus-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/service-prometheus-service.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/serviceaccount-prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/serviceaccount-prometheus.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/servicemonitor-catalogd-controller-manager-metrics-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/servicemonitor-catalogd-controller-manager-metrics-monitor.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/servicemonitor-kubelet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/servicemonitor-kubelet.yml -------------------------------------------------------------------------------- /helm/prometheus/templates/servicemonitor-operator-controller-controller-manager-metrics-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/templates/servicemonitor-operator-controller-controller-manager-metrics-monitor.yml -------------------------------------------------------------------------------- /helm/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/prometheus/values.yaml -------------------------------------------------------------------------------- /helm/tilt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/helm/tilt.yaml -------------------------------------------------------------------------------- /internal/catalogd/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/OWNERS -------------------------------------------------------------------------------- /internal/catalogd/controllers/core/clustercatalog_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/controllers/core/clustercatalog_controller.go -------------------------------------------------------------------------------- /internal/catalogd/controllers/core/clustercatalog_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/controllers/core/clustercatalog_controller_test.go -------------------------------------------------------------------------------- /internal/catalogd/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/features/features.go -------------------------------------------------------------------------------- /internal/catalogd/garbagecollection/garbage_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/garbagecollection/garbage_collector.go -------------------------------------------------------------------------------- /internal/catalogd/garbagecollection/garbage_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/garbagecollection/garbage_collector_test.go -------------------------------------------------------------------------------- /internal/catalogd/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/metrics/metrics.go -------------------------------------------------------------------------------- /internal/catalogd/serverutil/serverutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/serverutil/serverutil.go -------------------------------------------------------------------------------- /internal/catalogd/serverutil/serverutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/serverutil/serverutil_test.go -------------------------------------------------------------------------------- /internal/catalogd/storage/http_preconditions_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/http_preconditions_check.go -------------------------------------------------------------------------------- /internal/catalogd/storage/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/index.go -------------------------------------------------------------------------------- /internal/catalogd/storage/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/index_test.go -------------------------------------------------------------------------------- /internal/catalogd/storage/localdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/localdir.go -------------------------------------------------------------------------------- /internal/catalogd/storage/localdir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/localdir_test.go -------------------------------------------------------------------------------- /internal/catalogd/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/storage/storage.go -------------------------------------------------------------------------------- /internal/catalogd/webhook/cluster_catalog_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/webhook/cluster_catalog_webhook.go -------------------------------------------------------------------------------- /internal/catalogd/webhook/cluster_catalog_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/catalogd/webhook/cluster_catalog_webhook_test.go -------------------------------------------------------------------------------- /internal/operator-controller/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/OWNERS -------------------------------------------------------------------------------- /internal/operator-controller/action/error/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/error/errors.go -------------------------------------------------------------------------------- /internal/operator-controller/action/error/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/error/errors_test.go -------------------------------------------------------------------------------- /internal/operator-controller/action/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/helm.go -------------------------------------------------------------------------------- /internal/operator-controller/action/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/helm_test.go -------------------------------------------------------------------------------- /internal/operator-controller/action/restconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/restconfig.go -------------------------------------------------------------------------------- /internal/operator-controller/action/restconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/restconfig_test.go -------------------------------------------------------------------------------- /internal/operator-controller/action/storagedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/action/storagedriver.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/boxcutter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/boxcutter.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/boxcutter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/boxcutter_test.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/helm.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/helm_test.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/phase.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/phase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/phase_test.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/preflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/preflight.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/provider.go -------------------------------------------------------------------------------- /internal/operator-controller/applier/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/applier/provider_test.go -------------------------------------------------------------------------------- /internal/operator-controller/authentication/synthetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authentication/synthetic.go -------------------------------------------------------------------------------- /internal/operator-controller/authentication/synthetic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authentication/synthetic_test.go -------------------------------------------------------------------------------- /internal/operator-controller/authentication/tokengetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authentication/tokengetter.go -------------------------------------------------------------------------------- /internal/operator-controller/authentication/tokengetter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authentication/tokengetter_test.go -------------------------------------------------------------------------------- /internal/operator-controller/authentication/tripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authentication/tripper.go -------------------------------------------------------------------------------- /internal/operator-controller/authorization/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authorization/rbac.go -------------------------------------------------------------------------------- /internal/operator-controller/authorization/rbac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/authorization/rbac_test.go -------------------------------------------------------------------------------- /internal/operator-controller/bundleutil/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/bundleutil/bundle.go -------------------------------------------------------------------------------- /internal/operator-controller/bundleutil/bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/bundleutil/bundle_test.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/cache/cache.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/cache/cache_test.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/client/client.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/client/client_test.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/compare/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/compare/compare.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/compare/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/compare/compare_test.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/filter/bundle_predicates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/filter/bundle_predicates.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/filter/bundle_predicates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/filter/bundle_predicates_test.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/filter/successors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/filter/successors.go -------------------------------------------------------------------------------- /internal/operator-controller/catalogmetadata/filter/successors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/catalogmetadata/filter/successors_test.go -------------------------------------------------------------------------------- /internal/operator-controller/conditionsets/conditionsets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/conditionsets/conditionsets.go -------------------------------------------------------------------------------- /internal/operator-controller/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/config/config.go -------------------------------------------------------------------------------- /internal/operator-controller/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/config/config_test.go -------------------------------------------------------------------------------- /internal/operator-controller/config/error_formatting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/config/error_formatting_test.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/cache/cache.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/cache/cache_test.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/contentmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/contentmanager.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/source/dynamicsource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/source/dynamicsource.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/source/dynamicsource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/source/dynamicsource_test.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/source/internal/eventhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/source/internal/eventhandler.go -------------------------------------------------------------------------------- /internal/operator-controller/contentmanager/sourcerer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/contentmanager/sourcerer.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/boxcutter_reconcile_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/boxcutter_reconcile_steps.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clustercatalog_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clustercatalog_controller.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clustercatalog_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clustercatalog_controller_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextension_admission_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextension_admission_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextension_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextension_controller.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextension_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextension_controller_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextension_reconcile_steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextension_reconcile_steps.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextensionrevision_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextensionrevision_controller.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextensionrevision_controller_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextensionrevision_controller_internal_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/clusterextensionrevision_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/clusterextensionrevision_controller_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/common_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/common_controller.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/common_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/common_controller_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/suite_test.go -------------------------------------------------------------------------------- /internal/operator-controller/controllers/testhelpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/controllers/testhelpers_test.go -------------------------------------------------------------------------------- /internal/operator-controller/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/features/features.go -------------------------------------------------------------------------------- /internal/operator-controller/finalizers/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/finalizers/finalizers.go -------------------------------------------------------------------------------- /internal/operator-controller/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/labels/labels.go -------------------------------------------------------------------------------- /internal/operator-controller/resolve/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/resolve/catalog.go -------------------------------------------------------------------------------- /internal/operator-controller/resolve/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/resolve/catalog_test.go -------------------------------------------------------------------------------- /internal/operator-controller/resolve/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/resolve/resolver.go -------------------------------------------------------------------------------- /internal/operator-controller/resolve/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/resolve/validation.go -------------------------------------------------------------------------------- /internal/operator-controller/resolve/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/resolve/validation_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/bundle/registryv1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/bundle/registryv1.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/bundle/source/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/bundle/source/source.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/bundle/source/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/bundle/source/source_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/operator-registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/operator-registry/registry.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/crdupgradesafety.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/crdupgradesafety.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/crdupgradesafety_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/crdupgradesafety_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-no-webhook-extra-issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-no-webhook-extra-issue.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-no-webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-no-webhook.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-webhook-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-webhook-old.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-conversion-webhook.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-description-changed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-description-changed.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-field-removed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-field-removed.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-invalid: -------------------------------------------------------------------------------- 1 | not json 2 | -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-invalid-upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-invalid-upgrade.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-unhandled-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-unhandled-new.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-unhandled-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-unhandled-old.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-valid-upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/crd-valid-upgrade.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/no-crds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/no-crds.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/old-crd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/testdata/manifests/old-crd.json -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/preflights/crdupgradesafety/unhandled_message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/preflights/crdupgradesafety/unhandled_message_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certprovider.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certprovider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certprovider_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certproviders/certmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certproviders/certmanager.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certproviders/certmanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certproviders/certmanager_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certproviders/openshift_serviceca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certproviders/openshift_serviceca.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/certproviders/openshift_serviceca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/certproviders/openshift_serviceca_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/fake.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/generators/generators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/generators/generators.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/generators/generators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/generators/generators_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/generators/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/generators/resources.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/generators/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/generators/resources_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/registryv1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/registryv1.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/registryv1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/registryv1_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/validators/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/validators/validator.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/registryv1/validators/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/registryv1/validators/validator_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/render.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/render/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/render/render_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/testing/bundlefs/bundlefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/testing/bundlefs/bundlefs.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/testing/bundlefs/bundlefs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/testing/bundlefs/bundlefs_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/testing/clusterserviceversion/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/testing/clusterserviceversion/builder.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/testing/clusterserviceversion/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/testing/clusterserviceversion/builder_test.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/testing/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/testing/testing.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/util.go -------------------------------------------------------------------------------- /internal/operator-controller/rukpak/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/rukpak/util/util_test.go -------------------------------------------------------------------------------- /internal/operator-controller/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/operator-controller/scheme/scheme.go -------------------------------------------------------------------------------- /internal/shared/controllers/pull_secret_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/controllers/pull_secret_controller.go -------------------------------------------------------------------------------- /internal/shared/controllers/pull_secret_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/controllers/pull_secret_controller_test.go -------------------------------------------------------------------------------- /internal/shared/util/error/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/error/terminal.go -------------------------------------------------------------------------------- /internal/shared/util/featuregates/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/featuregates/logging.go -------------------------------------------------------------------------------- /internal/shared/util/featuregates/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/featuregates/logging_test.go -------------------------------------------------------------------------------- /internal/shared/util/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/filter/filter.go -------------------------------------------------------------------------------- /internal/shared/util/filter/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/filter/filter_test.go -------------------------------------------------------------------------------- /internal/shared/util/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/fs/fs.go -------------------------------------------------------------------------------- /internal/shared/util/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/fs/fs_test.go -------------------------------------------------------------------------------- /internal/shared/util/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/hash/hash.go -------------------------------------------------------------------------------- /internal/shared/util/hash/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/hash/hash_test.go -------------------------------------------------------------------------------- /internal/shared/util/http/certlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/certlog.go -------------------------------------------------------------------------------- /internal/shared/util/http/certpoolwatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/certpoolwatcher.go -------------------------------------------------------------------------------- /internal/shared/util/http/certpoolwatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/certpoolwatcher_test.go -------------------------------------------------------------------------------- /internal/shared/util/http/certutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/certutil.go -------------------------------------------------------------------------------- /internal/shared/util/http/certutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/certutil_test.go -------------------------------------------------------------------------------- /internal/shared/util/http/httputil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/http/httputil.go -------------------------------------------------------------------------------- /internal/shared/util/image/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/cache.go -------------------------------------------------------------------------------- /internal/shared/util/image/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/cache_test.go -------------------------------------------------------------------------------- /internal/shared/util/image/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/filters.go -------------------------------------------------------------------------------- /internal/shared/util/image/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/filters_test.go -------------------------------------------------------------------------------- /internal/shared/util/image/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/helm.go -------------------------------------------------------------------------------- /internal/shared/util/image/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/helm_test.go -------------------------------------------------------------------------------- /internal/shared/util/image/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/mocks.go -------------------------------------------------------------------------------- /internal/shared/util/image/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/pull.go -------------------------------------------------------------------------------- /internal/shared/util/image/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/image/pull_test.go -------------------------------------------------------------------------------- /internal/shared/util/pullsecretcache/pullsecretcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/pullsecretcache/pullsecretcache.go -------------------------------------------------------------------------------- /internal/shared/util/sa/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/sa/serviceaccount.go -------------------------------------------------------------------------------- /internal/shared/util/sa/serviceaccount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/sa/serviceaccount_test.go -------------------------------------------------------------------------------- /internal/shared/util/testutils/artifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/artifacts.go -------------------------------------------------------------------------------- /internal/shared/util/testutils/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/summary.go -------------------------------------------------------------------------------- /internal/shared/util/testutils/templates/alert.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/templates/alert.md.tmpl -------------------------------------------------------------------------------- /internal/shared/util/testutils/templates/mermaid_chart.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/templates/mermaid_chart.md.tmpl -------------------------------------------------------------------------------- /internal/shared/util/testutils/templates/summary.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/templates/summary.md.tmpl -------------------------------------------------------------------------------- /internal/shared/util/testutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/testutils/utils.go -------------------------------------------------------------------------------- /internal/shared/util/tlsprofiles/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/tlsprofiles/flags.go -------------------------------------------------------------------------------- /internal/shared/util/tlsprofiles/mozilla_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/tlsprofiles/mozilla_data.go -------------------------------------------------------------------------------- /internal/shared/util/tlsprofiles/tlsprofiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/tlsprofiles/tlsprofiles.go -------------------------------------------------------------------------------- /internal/shared/util/tlsprofiles/tlsprofiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/util/tlsprofiles/tlsprofiles_test.go -------------------------------------------------------------------------------- /internal/shared/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/internal/shared/version/version.go -------------------------------------------------------------------------------- /kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/kind-config.yaml -------------------------------------------------------------------------------- /manifests/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/OWNERS -------------------------------------------------------------------------------- /manifests/default-catalogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/default-catalogs.yaml -------------------------------------------------------------------------------- /manifests/experimental-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/experimental-e2e.yaml -------------------------------------------------------------------------------- /manifests/experimental.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/experimental.yaml -------------------------------------------------------------------------------- /manifests/standard-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/standard-e2e.yaml -------------------------------------------------------------------------------- /manifests/standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/manifests/standard.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/netlify.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /scripts/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/scripts/OWNERS -------------------------------------------------------------------------------- /scripts/install.tpl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/scripts/install.tpl.sh -------------------------------------------------------------------------------- /test/e2e/cluster_extension_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/cluster_extension_install_test.go -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/metrics_test.go -------------------------------------------------------------------------------- /test/e2e/network_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/network_policy_test.go -------------------------------------------------------------------------------- /test/e2e/single_namespace_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/single_namespace_support_test.go -------------------------------------------------------------------------------- /test/e2e/webhook_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/e2e/webhook_support_test.go -------------------------------------------------------------------------------- /test/extension-developer-e2e/extension_developer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/extension-developer-e2e/extension_developer_test.go -------------------------------------------------------------------------------- /test/extension-developer-e2e/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/extension-developer-e2e/setup.sh -------------------------------------------------------------------------------- /test/helpers/feature_gates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/helpers/feature_gates.go -------------------------------------------------------------------------------- /test/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/helpers/helpers.go -------------------------------------------------------------------------------- /test/regression/convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/convert_test.go -------------------------------------------------------------------------------- /test/regression/convert/generate-manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/generate-manifests.go -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-controller-manager-metrics-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-controller-manager-metrics-service_v1_service.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-manager-config_v1_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-manager-config_v1_configmap.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator.v0.6.0.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argocd-operator.v0.6.0.clusterserviceversion.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_applications.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_applicationsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_applicationsets.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_appprojects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_appprojects.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_argocdexports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_argocdexports.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_argocds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/manifests/argoproj.io_argocds.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/argocd-operator.v0.6.0/metadata/annotations.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/manifests/webhook-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/manifests/webhook-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/manifests/webhook.operators.coreos.io_webhooktests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/manifests/webhook.operators.coreos.io_webhooktests.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/bundles/webhook-operator.v0.0.5/metadata/annotations.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/00_clusterrole_argocd-operator-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/00_clusterrole_argocd-operator-metrics-reader.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/02_clusterrole_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/02_clusterrole_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/03_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/03_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/04_clusterrolebinding_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/04_clusterrolebinding_argocd-operator.v0.-3gkm3u8zfarktdile5wekso69zs9bgzb988mhjm0y6p.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/05_configmap_argocd-operator-manager-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/05_configmap_argocd-operator-manager-config.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/06_customresourcedefinition_applications.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/06_customresourcedefinition_applications.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/07_customresourcedefinition_applicationsets.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/07_customresourcedefinition_applicationsets.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/08_customresourcedefinition_appprojects.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/08_customresourcedefinition_appprojects.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/09_customresourcedefinition_argocdexports.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/09_customresourcedefinition_argocdexports.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/10_customresourcedefinition_argocds.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/10_customresourcedefinition_argocds.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/11_deployment_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/11_deployment_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/12_service_argocd-operator-controller-manager-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/12_service_argocd-operator-controller-manager-metrics-service.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/13_serviceaccount_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/all-namespaces/13_serviceaccount_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/00_clusterrole_argocd-operator-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/00_clusterrole_argocd-operator-metrics-reader.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/03_configmap_argocd-operator-manager-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/03_configmap_argocd-operator-manager-config.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/04_customresourcedefinition_applications.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/04_customresourcedefinition_applications.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/05_customresourcedefinition_applicationsets.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/05_customresourcedefinition_applicationsets.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/06_customresourcedefinition_appprojects.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/06_customresourcedefinition_appprojects.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/07_customresourcedefinition_argocdexports.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/07_customresourcedefinition_argocdexports.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/08_customresourcedefinition_argocds.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/08_customresourcedefinition_argocds.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/09_deployment_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/09_deployment_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/12_service_argocd-operator-controller-manager-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/12_service_argocd-operator-controller-manager-metrics-service.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/13_serviceaccount_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/own-namespace/13_serviceaccount_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/00_clusterrole_argocd-operator-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/00_clusterrole_argocd-operator-metrics-reader.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/01_clusterrole_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/02_clusterrolebinding_argocd-operator.v0-1dhiybrldl1gyksid1dk2dqjsc72psdybc7iyvse5gpx.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/03_configmap_argocd-operator-manager-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/03_configmap_argocd-operator-manager-config.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/04_customresourcedefinition_applications.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/04_customresourcedefinition_applications.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/05_customresourcedefinition_applicationsets.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/05_customresourcedefinition_applicationsets.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/06_customresourcedefinition_appprojects.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/06_customresourcedefinition_appprojects.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/07_customresourcedefinition_argocdexports.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/07_customresourcedefinition_argocdexports.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/08_customresourcedefinition_argocds.argoproj.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/08_customresourcedefinition_argocds.argoproj.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/09_deployment_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/09_deployment_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/10_role_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/11_rolebinding_argocd-operator.v0-22gmilmgp91wu25is5i2ec598hni8owq3l71bbkl7iz3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/12_service_argocd-operator-controller-manager-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/12_service_argocd-operator-controller-manager-metrics-service.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/13_serviceaccount_argocd-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/argocd-operator.v0.6.0/single-namespace/13_serviceaccount_argocd-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/00_clusterrole_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/00_clusterrole_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/01_clusterrole_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/01_clusterrole_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/02_clusterrolebinding_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/02_clusterrolebinding_webhook-operator.v-119edugfdvz48oyy2ctmbp4ec5c4a7zbv5k03vg4y3ve.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/03_clusterrolebinding_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/03_clusterrolebinding_webhook-operator.v-1zfvwth88plw3th2midra1jqduroo1q7omiagjujsiu3.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/04_customresourcedefinition_webhooktests.webhook.operators.coreos.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/04_customresourcedefinition_webhooktests.webhook.operators.coreos.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/05_deployment_webhook-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/05_deployment_webhook-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/06_mutatingwebhookconfiguration_mwebhooktest-v1.kb.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/06_mutatingwebhookconfiguration_mwebhooktest-v1.kb.io.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/07_service_webhook-operator-controller-manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/07_service_webhook-operator-controller-manager-service.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/08_serviceaccount_webhook-operator-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/08_serviceaccount_webhook-operator-controller-manager.yaml -------------------------------------------------------------------------------- /test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/09_validatingwebhookconfiguration_vwebhooktest-v1.kb.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/regression/convert/testdata/expected-manifests/webhook-operator.v0.0.5/all-webhook-types/09_validatingwebhookconfiguration_vwebhooktest-v1.kb.io.yaml -------------------------------------------------------------------------------- /test/upgrade-e2e/post_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/upgrade-e2e/post_upgrade_test.go -------------------------------------------------------------------------------- /test/upgrade-e2e/upgrade_e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/upgrade-e2e/upgrade_e2e_suite_test.go -------------------------------------------------------------------------------- /test/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/test/utils.go -------------------------------------------------------------------------------- /testdata/.gitignore: -------------------------------------------------------------------------------- 1 | push/bin 2 | -------------------------------------------------------------------------------- /testdata/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/Dockerfile -------------------------------------------------------------------------------- /testdata/build-test-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/build-test-registry.sh -------------------------------------------------------------------------------- /testdata/certs/empty/empty.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/certs/empty/empty.pem -------------------------------------------------------------------------------- /testdata/certs/good/Amazon_Root_CA_1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/certs/good/Amazon_Root_CA_1.pem -------------------------------------------------------------------------------- /testdata/certs/good/Amazon_Root_CA_2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/certs/good/Amazon_Root_CA_2.pem -------------------------------------------------------------------------------- /testdata/certs/good/Amazon_Root_CA_3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/certs/good/Amazon_Root_CA_3.pem -------------------------------------------------------------------------------- /testdata/images/bundles/own-namespace-operator/v1.0.0/manifests/olm.operatorframework.com_ownnamespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/own-namespace-operator/v1.0.0/manifests/olm.operatorframework.com_ownnamespaces.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/own-namespace-operator/v1.0.0/manifests/ownnamespaceoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/own-namespace-operator/v1.0.0/manifests/ownnamespaceoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/own-namespace-operator/v1.0.0/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/own-namespace-operator/v1.0.0/metadata/annotations.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/single-namespace-operator/v1.0.0/manifests/olm.operatorframework.com_singlenamespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/single-namespace-operator/v1.0.0/manifests/olm.operatorframework.com_singlenamespaces.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/single-namespace-operator/v1.0.0/manifests/singlenamespaceoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/single-namespace-operator/v1.0.0/manifests/singlenamespaceoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/single-namespace-operator/v1.0.0/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/single-namespace-operator/v1.0.0/metadata/annotations.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/manifests/bundle.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/manifests/bundle.configmap.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/manifests/olm.operatorframework.com_olme2etest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/manifests/olm.operatorframework.com_olme2etest.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/manifests/script.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/manifests/script.configmap.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/manifests/testoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/manifests/testoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/manifests/testoperator.networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/manifests/testoperator.networkpolicy.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.0.0/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.0.0/metadata/annotations.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/manifests/bundle.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/manifests/bundle.configmap.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/manifests/olm.operatorframework.com_olme2etest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/manifests/olm.operatorframework.com_olme2etest.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/manifests/script.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/manifests/script.configmap.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/manifests/testoperator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/manifests/testoperator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/manifests/testoperator.networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/manifests/testoperator.networkpolicy.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/test-operator/v1.2.0/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/test-operator/v1.2.0/metadata/annotations.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook.operators.coreos.io_webhooktests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/webhook-operator/v0.0.1/manifests/webhook.operators.coreos.io_webhooktests.yaml -------------------------------------------------------------------------------- /testdata/images/bundles/webhook-operator/v0.0.1/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/bundles/webhook-operator/v0.0.1/metadata/annotations.yaml -------------------------------------------------------------------------------- /testdata/images/catalogs/test-catalog/v1/configs/.indexignore: -------------------------------------------------------------------------------- 1 | /expected_all.json 2 | ..* 3 | -------------------------------------------------------------------------------- /testdata/images/catalogs/test-catalog/v1/configs/catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/catalogs/test-catalog/v1/configs/catalog.yaml -------------------------------------------------------------------------------- /testdata/images/catalogs/test-catalog/v2/configs/.indexignore: -------------------------------------------------------------------------------- 1 | /expected_all.json 2 | ..* 3 | -------------------------------------------------------------------------------- /testdata/images/catalogs/test-catalog/v2/configs/catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/images/catalogs/test-catalog/v2/configs/catalog.yaml -------------------------------------------------------------------------------- /testdata/push/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/push/README.md -------------------------------------------------------------------------------- /testdata/push/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/push/go.mod -------------------------------------------------------------------------------- /testdata/push/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/push/go.sum -------------------------------------------------------------------------------- /testdata/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-controller/HEAD/testdata/push/push.go --------------------------------------------------------------------------------