diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2deee950..01e47224 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '~1.16' + go-version: '~1.17' - run: make build \ No newline at end of file diff --git a/.github/workflows/license-tests.yml b/.github/workflows/license-tests.yml index 2726e28e..31ad80cd 100644 --- a/.github/workflows/license-tests.yml +++ b/.github/workflows/license-tests.yml @@ -18,6 +18,6 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '1.15' + go-version: '1.17' - name: Perform the test run: make test-license diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5bfc1cb7..17ee340c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '~1.16' + go-version: '~1.17' - run: | make build chmod +x bin/audit-tool diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 0977e36a..d9efaa13 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '1.16' + go-version: '1.17' - name: Perform the test run: make test coverage: @@ -34,7 +34,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '1.16' + go-version: '1.17' - name: Generate the coverage output run: make test-coverage - name: Send the coverage output diff --git a/Makefile b/Makefile index 57146a38..d0e28e7d 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,7 @@ generate-dashboards: go run ./hack/deprecate-api/generate.go go run ./hack/maxocpversion/generate.go go run ./hack/grade/generate.go + go run ./hack/catalogs/generate.go go run ./hack/muiltarch/generate.go go run ./hack/index/generate.go @@ -107,3 +108,8 @@ generate-all: make generate-testdata make generate-dashboards +.PHONY: generate-test ## Generate the full testdata directory +generate-test: install + $(CONTAINER_ENGINE) login https://registry.redhat.io + go run ./hack/report/bundles/generate.go + go run ./hack/deprecate-api/generate.go \ No newline at end of file diff --git a/cmd/custom/catalogs/command.go b/cmd/custom/catalogs/command.go new file mode 100644 index 00000000..b0a4b6c0 --- /dev/null +++ b/cmd/custom/catalogs/command.go @@ -0,0 +1,116 @@ +// Copyright 2021 The Audit Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this File except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package catalogs + +import ( + "html/template" + "os" + "path/filepath" + "strings" + + log "github.com/sirupsen/logrus" + "github.com/spf13/cobra" + + "github.com/operator-framework/audit/pkg" + "github.com/operator-framework/audit/pkg/reports/custom" +) + +var name string + +func NewCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "catalogs", + Short: "generates a custom report to let us know all distributions which are shipped in more than a catalog", + Long: "use this command with the result of `audit index bundles [OPTIONS]` to check a dashboard in HTML format " + + "with the packages data", + PreRunE: validation, + RunE: run, + } + + currentPath, err := os.Getwd() + if err != nil { + log.Error(err) + os.Exit(1) + } + + cmd.Flags().StringVar(&custom.Flags.Files, "files", "", + "path of the JSON File(s) using result of the command audit-tool index bundles --index-image= [OPTIONS]") + if err := cmd.MarkFlagRequired("files"); err != nil { + log.Fatalf("Failed to mark `file` flag for `index` sub-command as required") + } + cmd.Flags().StringVar(&custom.Flags.OutputPath, "output-path", currentPath, + "inform the path of the directory to output the report. (Default: current directory)") + cmd.Flags().StringVar(&custom.Flags.Template, "template", "", + "inform the path of the template that should be used. If not informed the default will be used") + cmd.Flags().StringVar(&custom.Flags.Filter, "filter", "", + "filter by the packages names which are like *filter*") + cmd.Flags().StringVar(&name, "name", "", + "inform the report name") + return cmd +} + +func validation(cmd *cobra.Command, args []string) error { + if len(custom.Flags.OutputPath) > 0 { + if _, err := os.Stat(custom.Flags.OutputPath); os.IsNotExist(err) { + return err + } + } + return nil +} + +func run(cmd *cobra.Command, args []string) error { + log.Info("Starting ...") + + currentPath, err := os.Getwd() + if err != nil { + return err + } + + allBundlesReport, err := custom.ParseMultiBundlesJSONReport() + if err != nil { + return err + } + + catalogReport := custom.NewCatalogReportReport(allBundlesReport, custom.Flags.Filter, name) + + reportName := strings.ReplaceAll(name, " ", "_") + dashOutputPath := filepath.Join(custom.Flags.OutputPath, + pkg.GetReportName(reportName, "catalog", "html")) + + f, err := os.Create(dashOutputPath) + if err != nil { + log.Fatal(err) + } + + if len(custom.Flags.Template) == 0 { + custom.Flags.Template = getTemplatePath(currentPath) + } + + t := template.Must(template.ParseFiles(custom.Flags.Template)) + err = t.Execute(f, catalogReport) + if err != nil { + panic(err) + } + + f.Close() + log.Infof("Operation completed.") + + return nil +} + +//todo: this template requires to be embed +func getTemplatePath(currentPath string) string { + return filepath.Join(currentPath, "/cmd/custom/catalogs/template.go.tmpl") +} diff --git a/cmd/custom/catalogs/template.go.tmpl b/cmd/custom/catalogs/template.go.tmpl new file mode 100644 index 00000000..7765342f --- /dev/null +++ b/cmd/custom/catalogs/template.go.tmpl @@ -0,0 +1,172 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Catalog Conflicts Dashboard - {{ .Name }}

+

This report aims to try to identify the package distributions that are duplicated in the index informed.

+ +
+
Data from:
+

Image names:

+ +

GeneratedAt : {{ .GeneratedAt }}

+ +
+ +
+
Same Package Name:
+

The following are the packages found in more than one index with the same package name

+ + + + + + + + + {{ with .ByPropertiesPackageName }} + {{ range . }} + {{ if ne .PackageName "" }} + + + + + {{ end }} + {{ end }} + {{ end }} + +
Package NameCatalogs
{{ .PackageName }} +
    + {{ range .Catalogs }} +
  • {{ . }}
  • + {{ end }} +
+
+
+ +
+
Same APIs:
+

The following are the packages found in more than one index which are using the same apis

+ + + + + + + + + + {{ with .ByPropertiesGKV }} + {{ range . }} + + + + + + {{ end }} + {{ end }} + +
PackagesCatalogsGKVs
+
    + {{ range .PackageNames }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .Catalogs }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .GKV }} +
  • {{ . }}
  • + {{ end }} +
+
+
+
+ + + diff --git a/cmd/custom/deprecate/command.go b/cmd/custom/deprecate/command.go index 9668ad88..0f60a5da 100644 --- a/cmd/custom/deprecate/command.go +++ b/cmd/custom/deprecate/command.go @@ -15,6 +15,7 @@ package deprecate import ( + "fmt" "html/template" "os" "path/filepath" @@ -28,9 +29,11 @@ import ( func NewCmd() *cobra.Command { cmd := &cobra.Command{ - Use: "deprecate-apis", - Short: "generates a custom report based on defined criteria over the deprecated apis scenario for 1.22", - Long: "use this command with the result of `audit index bundles [OPTIONS]` to check a dashboard in HTML format " + + Use: "deprecate-apis", + Short: "generates a custom report based on defined criteria over the " + + "deprecated apis scenario for 1.22 by default or the version informed", + Long: "use this command with the result of `audit index bundles [OPTIONS]` " + + "to check a dashboard in HTML format " + "with the packages data", PreRunE: validation, RunE: run, @@ -51,6 +54,12 @@ func NewCmd() *cobra.Command { "inform the path of the directory to output the report. (Default: current directory)") cmd.Flags().StringVar(&custom.Flags.Template, "template", "", "inform the path of the template that should be used. If not informed the default will be used") + optionalValueEmpty := map[string]string{} + cmd.Flags().StringToStringVarP(&custom.Flags.OptionalValues, "optional-values", "", optionalValueEmpty, + "Inform a []string map of key=values which can be used by the report. e.g. to check the usage of deprecated APIs "+ + "against an Kubernetes version that it is intended to be distributed use `--optional-values=k8s-version=1.22`") + cmd.Flags().StringVar(&custom.Flags.Filter, "filter", "", + "filter by the packages names which are like *filter*") return cmd } @@ -76,10 +85,10 @@ func run(cmd *cobra.Command, args []string) error { return err } - apiDashReport := custom.NewAPIDashReport(bundlesReport) + apiDashReport := custom.NewAPIDashReport(bundlesReport, custom.Flags.OptionalValues, custom.Flags.Filter) dashOutputPath := filepath.Join(custom.Flags.OutputPath, - pkg.GetReportName(apiDashReport.ImageName, "deprecate-apis", "html")) + pkg.GetReportName(apiDashReport.ImageName, fmt.Sprintf("deprecate-apis-%s", apiDashReport.K8SVersion), "html")) f, err := os.Create(dashOutputPath) if err != nil { diff --git a/cmd/custom/deprecate/template.go.tmpl b/cmd/custom/deprecate/template.go.tmpl index 0bc82d36..8718d6b8 100644 --- a/cmd/custom/deprecate/template.go.tmpl +++ b/cmd/custom/deprecate/template.go.tmpl @@ -62,13 +62,13 @@ + + + + + + + + +
+ +

Catalog Conflicts Dashboard - OCP v4.10

+

This report aims to try to identify the package distributions that are duplicated in the index informed.

+ +
+
Data from:
+

Image names:

+ +

GeneratedAt : 2022-01-25

+ +
+ +
+
Same Package Name:
+

The following are the packages found in more than one index with the same package name

+ + + + + + + + + + + + + + + + + + + +
Package NameCatalogs
node-healthcheck-operator +
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
+ +
+
Same APIs:
+

The following are the packages found in more than one index which are using the same apis

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PackagesCatalogsGKVs
+
    + +
  • k8s-triliovault
  • + +
  • k8s-triliovault-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"License","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterRestore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1"}
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator
  • + +
  • citrix-cpx-with-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixCpxWithIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • kubeturbo
  • + +
  • kubeturbo-certified-rhmp
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1alpha1"}
  • + +
+
+
    + +
  • crane-operator
  • + +
  • oadp-operator
  • + +
  • mtc-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"velero.io","kind":"BackupStorageLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ServerStatusRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Schedule","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeBackup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigrationProgress","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageStreamMigration","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigHook","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigAnalytic","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"DeleteBackupRequest","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigCluster","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeRestore","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigStorage","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigPlan","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigrationController","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ResticRepository","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"DownloadRequest","version":"v1"}
  • + +
+
+
    + +
  • couchbase-enterprise-certified
  • + +
  • couchbase-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseAutoscaler","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v2"}
  • + +
+
+
    + +
  • apicurio-registry
  • + +
  • service-registry-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"registry.apicur.io","kind":"ApicurioRegistry","version":"v1"}
  • + +
+
+
    + +
  • eclipse-che
  • + +
  • codeready-workspaces
  • + +
  • codeready-workspaces2
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"org.eclipse.che","kind":"CheClusterBackup","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheCluster","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterRestore","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheBackupServerConfiguration","version":"v1"}
  • + +
+
+
    + +
  • cloudbees-ci
  • + +
  • cloudbees-ci-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.cloudbees.com","kind":"CloudBeesCI","version":"v1alpha1"}
  • + +
+
+
    + +
  • portworx-certified
  • + +
  • portworx-essentials
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1"}
  • + +
+
+
    + +
  • community-kubevirt-hyperconverged
  • + +
  • kubevirt-hyperconverged
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1beta1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1alpha3"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1alpha1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"SSP","version":"v1beta1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1beta1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1beta1"}
  • + +
  • {"group":"nodemaintenance.kubevirt.io","kind":"NodeMaintenance","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"V2VVmware","version":"v1alpha1"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1beta1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1alpha1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1alpha1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"OVirtProvider","version":"v1alpha1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1alpha1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1"}
  • + +
+
+
    + +
  • jaeger
  • + +
  • jaeger-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"jaegertracing.io","kind":"Jaeger","version":"v1"}
  • + +
+
+
    + +
  • syndesis
  • + +
  • fuse-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta2"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta1"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1alpha1"}
  • + +
+
+
    + +
  • infinispan
  • + +
  • datagrid
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"infinispan.org","kind":"Infinispan","version":"v1"}
  • + +
  • {"group":"infinispan.org","kind":"Batch","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Restore","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Backup","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Cache","version":"v2alpha1"}
  • + +
+
+
    + +
  • entando-k8s-operator
  • + +
  • entando-k8s-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"entando.org","kind":"EntandoDeBundle","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoAppPluginLink","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoKeycloakServer","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoCompositeApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoPlugin","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoClusterInfrastructure","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDatabaseService","version":"v1"}
  • + +
+
+
    + +
  • opentelemetry-operator
  • + +
  • opentelemetry-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"opentelemetry.io","kind":"OpenTelemetryCollector","version":"v1alpha1"}
  • + +
+
+
    + +
  • neuvector-certified-operator
  • + +
  • neuvector-community-operator
  • + +
  • neuvector-certified-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.neuvector.com","kind":"Neuvector","version":"v1alpha1"}
  • + +
+
+
    + +
  • minio-operator
  • + +
  • minio-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"minio.min.io","kind":"Tenant","version":"v2"}
  • + +
+
+
    + +
  • citrix-ingress-controller-operator
  • + +
  • citrix-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • strimzi-kafka-operator
  • + +
  • amq-streams
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta2"}
  • + +
+
+
    + +
  • sysdig-certified
  • + +
  • sysdig-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sysdig.com","kind":"SysdigAgent","version":"v1"}
  • + +
+
+
    + +
  • vfunction-server-operator
  • + +
  • vfunction-server-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vfunction.com","kind":"VfunctionServer","version":"v1"}
  • + +
+
+
    + +
  • camel-k
  • + +
  • red-hat-camel-k
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"camel.apache.org","kind":"IntegrationPlatform","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"KameletBinding","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"Integration","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Kamelet","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"Build","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationKit","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"CamelCatalog","version":"v1"}
  • + +
+
+
    + +
  • kubemq-operator-marketplace
  • + +
  • kubemq-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1alpha1"}
  • + +
+
+
    + +
  • keycloak-operator
  • + +
  • rhsso-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"keycloak.org","kind":"KeycloakClient","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakUser","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"Keycloak","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakRealm","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakBackup","version":"v1alpha1"}
  • + +
+
+
    + +
  • linstor-operator
  • + +
  • linstor-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"linstor.linbit.com","kind":"LinstorCSIDriver","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorController","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorSatelliteSet","version":"v1"}
  • + +
+
+
    + +
  • marketplace-games-operator
  • + +
  • marketplace-games-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"game.marketplace.redhat.com","kind":"Arcade","version":"v1"}
  • + +
+
+
    + +
  • ovms-operator
  • + +
  • ovms-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"intel.com","kind":"ModelServer","version":"v1alpha1"}
  • + +
  • {"group":"intel.com","kind":"Notebook","version":"v1alpha1"}
  • + +
+
+
    + +
  • zabbix-operator-certified
  • + +
  • zabbix-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixFull","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixServer","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAgent","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxySqlite","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxyMysql","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAppliance","version":"v1alpha1"}
  • + +
+
+
    + +
  • maistraoperator
  • + +
  • servicemeshoperator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"maistra.io","kind":"ServiceMeshMember","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMemberRoll","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v2"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v1"}
  • + +
+
+
    + +
  • argocd-operator
  • + +
  • openshift-gitops-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"argoproj.io","kind":"Application","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"AppProject","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ArgoCD","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ApplicationSet","version":"v1alpha1"}
  • + +
+
+
    + +
  • dynatrace-operator
  • + +
  • dynatrace-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"DynaKube","version":"v1alpha1"}
  • + +
+
+
    + +
  • xcrypt-operator
  • + +
  • xcrypt-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xcrypt.zettaset.com","kind":"XCrypt","version":"v1alpha1"}
  • + +
+
+
    + +
  • hpe-csi-operator
  • + +
  • hpe-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storage.hpe.com","kind":"HPECSIDriver","version":"v1"}
  • + +
+
+
    + +
  • anzo-operator
  • + +
  • anzo-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzo.cambridgesemantics.com","kind":"Anzo","version":"v1"}
  • + +
+
+
    + +
  • anzograph-operator
  • + +
  • anzograph-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzograph.clusters.cambridgesemantics.com","kind":"AnzoGraph","version":"v2"}
  • + +
+
+
    + +
  • joget-dx-operator
  • + +
  • joget-dx-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"JogetDX","version":"v1alpha1"}
  • + +
+
+
    + +
  • node-healthcheck-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"remediation.medik8s.io","kind":"NodeHealthCheck","version":"v1alpha1"}
  • + +
+
+
    + +
  • apicurito
  • + +
  • fuse-apicurito
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apicur.io","kind":"Apicurito","version":"v1alpha1"}
  • + +
+
+
    + +
  • hazelcast-enterprise-certified
  • + +
  • hazelcast-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • poison-pill-operator
  • + +
  • poison-pill-manager
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillConfig","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediation","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediationTemplate","version":"v1alpha1"}
  • + +
+
+
    + +
  • crunchy-postgres-operator
  • + +
  • postgresql
  • + +
  • crunchy-postgres-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"postgres-operator.crunchydata.com","kind":"PostgresCluster","version":"v1beta1"}
  • + +
+
+
    + +
  • anzounstructured-operator
  • + +
  • anzounstructured-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzounstructured.clusters.cambridgesemantics.com","kind":"AnzoUnstructured","version":"v1"}
  • + +
+
+
    + +
  • kiali
  • + +
  • kiali-ossm
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kiali.io","kind":"Kiali","version":"v1alpha1"}
  • + +
  • {"group":"monitoring.kiali.io","kind":"MonitoringDashboard","version":"v1alpha1"}
  • + +
+
+
    + +
  • aikit-operator
  • + +
  • aikit-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aikit.intel","kind":"AIKitContainer","version":"v1alpha1"}
  • + +
+
+
    + +
  • iomesh-operator
  • + +
  • iomesh-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"iomesh.com","kind":"IOMeshCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • t8c
  • + +
  • t8c-certified-rhmp
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1alpha1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1"}
  • + +
+
+
    + +
  • hawtio-operator
  • + +
  • fuse-console
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hawt.io","kind":"Hawtio","version":"v1alpha1"}
  • + +
+
+
+
+ + + diff --git a/testdata/reports/catalogs/catalog_OCP_v4.7_2022-01-25.html b/testdata/reports/catalogs/catalog_OCP_v4.7_2022-01-25.html new file mode 100644 index 00000000..aed30f9f --- /dev/null +++ b/testdata/reports/catalogs/catalog_OCP_v4.7_2022-01-25.html @@ -0,0 +1,4816 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Catalog Conflicts Dashboard - OCP v4.7

+

This report aims to try to identify the package distributions that are duplicated in the index informed.

+ +
+
Data from:
+

Image names:

+ +

GeneratedAt : 2022-01-25

+ +
+ +
+
Same Package Name:
+

The following are the packages found in more than one index with the same package name

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameCatalogs
hedvig-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
aci-containers-operator +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
tf-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
fep-ansible-operator +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
rocketchat-operator-certified +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
mongodb-atlas-kubernetes +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
gitlab-runner-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
+ +
+
Same APIs:
+

The following are the packages found in more than one index which are using the same apis

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PackagesCatalogsGKVs
+
    + +
  • crane-operator
  • + +
  • mtc-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"migration.openshift.io","kind":"MigMigration","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigCluster","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigStorage","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ResticRepository","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigHook","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"BackupStorageLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"DownloadRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"ServerStatusRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigrationProgress","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeRestore","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Schedule","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeBackup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigAnalytic","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"DeleteBackupRequest","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigrationController","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigPlan","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageStreamMigration","version":"v1alpha1"}
  • + +
+
+
    + +
  • hive-operator
  • + +
  • advanced-cluster-management
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hive.openshift.io","kind":"ClusterState","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSync","version":"v1alpha1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Deployable","version":"v1"}
  • + +
  • {"group":"app.k8s.io","kind":"Application","version":"v1beta1"}
  • + +
  • {"group":"hive.openshift.io","kind":"MachinePool","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"HiveConfig","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Subscription","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"DNSZone","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterRelocate","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterClaim","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"PlacementRule","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncSet","version":"v1"}
  • + +
  • {"group":"operator.open-cluster-management.io","kind":"ClusterManager","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterPool","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"MachinePoolNameLease","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"Checkpoint","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncSet","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeployment","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Channel","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"FakeClusterInstall","version":"v1alpha1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1beta1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterProvision","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeprovision","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterImageSet","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSyncLease","version":"v1alpha1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"HelmRelease","version":"v1"}
  • + +
+
+
    + +
  • strimzi-kafka-operator
  • + +
  • amq-streams
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta1"}
  • + +
+
+
    + +
  • k8s-triliovault
  • + +
  • k8s-triliovault-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"License","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterRestore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1alpha1"}
  • + +
+
+
    + +
  • aqua-operator-certified
  • + +
  • aqua
  • + +
  • aqua-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.aquasec.com","kind":"AquaGateway","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaCsp","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaServer","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaKubeEnforcer","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaEnforcer","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaDatabase","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaScanner","version":"v1alpha1"}
  • + +
+
+
    + +
  • entando-k8s-operator
  • + +
  • entando-k8s-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"entando.org","kind":"EntandoDeBundle","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoAppPluginLink","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoKeycloakServer","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoCompositeApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoClusterInfrastructure","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDatabaseService","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoPlugin","version":"v1"}
  • + +
+
+
    + +
  • openunison-ocp-certified
  • + +
  • openunison-ocp-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openunison.tremolo.io","kind":"OpenUnison","version":"v1"}
  • + +
+
+
    + +
  • percona-xtradb-cluster-operator-certified
  • + +
  • percona-xtradb-cluster-operator
  • + +
  • percona-xtradb-cluster-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-1-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-8-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBBackup","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-6-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-5-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterRestore","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterBackup","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-10-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-7-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-4-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-9-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-3-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-2-0"}
  • + +
+
+
    + +
  • kpow-io-certified
  • + +
  • kpow-io-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kpow.io","kind":"Kpow","version":"v1beta1"}
  • + +
+
+
    + +
  • 3scale-community-operator
  • + +
  • 3scale-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"capabilities.3scale.net","kind":"Plan","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManager","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"MappingRule","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Limit","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManagerRestore","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Metric","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Product","version":"v1beta1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Tenant","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"API","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManagerBackup","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Backend","version":"v1beta1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Binding","version":"v1alpha1"}
  • + +
+
+
    + +
  • appdynamics-operator
  • + +
  • appdynamics-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"appdynamics.com","kind":"InfraViz","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Clustercollector","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Adam","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Hostcollector","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Clusteragent","version":"v1alpha1"}
  • + +
+
+
    + +
  • enmasse
  • + +
  • amq-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1alpha1"}
  • + +
  • {"group":"enmasse.io","kind":"AddressSpace","version":"v1beta1"}
  • + +
  • {"group":"enmasse.io","kind":"Address","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"StandardInfraConfig","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1beta2"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1beta2"}
  • + +
  • {"group":"enmasse.io","kind":"AddressSpaceSchema","version":"v1beta1"}
  • + +
  • {"group":"user.enmasse.io","kind":"MessagingUser","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"BrokeredInfraConfig","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AuthenticationService","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"ConsoleService","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"BrokeredInfraConfig","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"StandardInfraConfig","version":"v1beta1"}
  • + +
+
+
    + +
  • seldon-operator-certified
  • + +
  • seldon-operator
  • + +
  • seldon-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1alpha2"}
  • + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1"}
  • + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1alpha3"}
  • + +
+
+
    + +
  • hazelcast-jet-enterprise-operator
  • + +
  • hazelcast-jet-enterprise-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastJetEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • konveyor-forklift-operator
  • + +
  • mtv-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"forklift.konveyor.io","kind":"StorageMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Host","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Hook","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Provisioner","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Provider","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Migration","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"NetworkMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Plan","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"ForkliftController","version":"v1beta1"}
  • + +
+
+
    + +
  • storageos2
  • + +
  • storageos2-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storageos.com","kind":"StorageOSCluster","version":"v1"}
  • + +
+
+
    + +
  • amcop-operator
  • + +
  • amcop-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"amcop.aarnanetworks.com","kind":"Installer","version":"v1alpha1"}
  • + +
+
+
    + +
  • fep-ansible-operator
  • + +
  • fujitsu-enterprise-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"fep.fujitsu.io","kind":"FEPAction","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPPgpool2","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPBackup","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPConfig","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPPgpool2Cert","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPUser","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPRestore","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPCert","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPCluster","version":"v2"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPVolume","version":"v1"}
  • + +
+
+
    + +
  • dell-csi-operator-certified
  • + +
  • dell-csi-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"storage.dell.com","kind":"CSIPowerMaxRevProxy","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIPowerStore","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIUnity","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIVXFlexOS","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIIsilon","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIPowerMax","version":"v1"}
  • + +
+
+
    + +
  • portshift-controller-operator
  • + +
  • portshift-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"portshift.io","kind":"PortshiftInstaller","version":"v1"}
  • + +
+
+
    + +
  • ovms-operator
  • + +
  • ovms-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"intel.com","kind":"Notebook","version":"v1alpha1"}
  • + +
  • {"group":"intel.com","kind":"ModelServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • kubemq-operator-marketplace
  • + +
  • kubemq-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1beta1"}
  • + +
+
+
    + +
  • mongodb-enterprise
  • + +
  • mongodb-enterprise-advanced-ibm-rhmp
  • + +
  • mongodb-enterprise-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"mongodb.com","kind":"MongoDBUser","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDB","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDbStandalone","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDbShardedCluster","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDbReplicaSet","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDBOpsManager","version":"v1"}
  • + +
+
+
    + +
  • camel-k
  • + +
  • red-hat-camel-k
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"camel.apache.org","kind":"Build","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"KameletBinding","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationKit","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Kamelet","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationPlatform","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Integration","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"CamelCatalog","version":"v1"}
  • + +
+
+
    + +
  • eamli-operator
  • + +
  • eamli-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"eamli.white.space","kind":"Stack","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"ProductServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"WebApp","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"Executor","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"SourceData","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"APIServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"CoreModelServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • crunchy-postgres-operator
  • + +
  • postgresql
  • + +
  • crunchy-postgres-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"crunchydata.com","kind":"Pgpolicy","version":"v1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgtask","version":"v1"}
  • + +
  • {"group":"postgres-operator.crunchydata.com","kind":"PostgresCluster","version":"v1beta1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgreplica","version":"v1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgcluster","version":"v1"}
  • + +
+
+
    + +
  • community-kubevirt-hyperconverged
  • + +
  • kubevirt-hyperconverged
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"v2v.kubevirt.io","kind":"OVirtProvider","version":"v1alpha1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1beta1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtCommonTemplatesBundle","version":"v1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtTemplateValidator","version":"v1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtNodeLabellerBundle","version":"v1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1alpha1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"SSP","version":"v1beta1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtMetricsAggregation","version":"v1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1alpha3"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1beta1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1beta1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1alpha1"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1alpha1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"V2VVmware","version":"v1alpha1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1alpha1"}
  • + +
  • {"group":"nodemaintenance.kubevirt.io","kind":"NodeMaintenance","version":"v1beta1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1alpha1"}
  • + +
+
+
    + +
  • portworx-certified
  • + +
  • portworx-essentials
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • percona-server-mongodb-operator-certified
  • + +
  • percona-server-mongodb-operator
  • + +
  • percona-server-mongodb-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-1-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-4-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-11-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBRestore","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-6-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-5-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBBackup","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-7-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-2-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1alpha1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-8-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-3-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-9-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-10-0"}
  • + +
+
+
    + +
  • kiali
  • + +
  • kiali-ossm
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kiali.io","kind":"Kiali","version":"v1alpha1"}
  • + +
  • {"group":"monitoring.kiali.io","kind":"MonitoringDashboard","version":"v1alpha1"}
  • + +
+
+
    + +
  • runtime-component-operator-certified
  • + +
  • runtime-component-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.stacks","kind":"RuntimeComponent","version":"v1beta1"}
  • + +
+
+
    + +
  • splunk-certified
  • + +
  • splunk
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"enterprise.splunk.com","kind":"Spark","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"Standalone","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"IndexerCluster","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"LicenseMaster","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"SearchHeadCluster","version":"v1alpha2"}
  • + +
+
+
    + +
  • couchbase-enterprise-certified
  • + +
  • couchbase-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseAutoscaler","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v1"}
  • + +
+
+
    + +
  • kubeplus
  • + +
  • kubeplus-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"workflows.kubeplus","kind":"ResourceEvent","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourceMonitor","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourceComposition","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourcePolicy","version":"v1alpha1"}
  • + +
+
+
    + +
  • datadog-operator-certified
  • + +
  • datadog-operator
  • + +
  • datadog-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"datadoghq.com","kind":"DatadogMonitor","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogAgent","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogMetric","version":"v1alpha1"}
  • + +
+
+
    + +
  • keycloak-operator
  • + +
  • rhsso-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"keycloak.org","kind":"Keycloak","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakUser","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakClient","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakBackup","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakRealm","version":"v1alpha1"}
  • + +
+
+
    + +
  • zabbix-operator-certified
  • + +
  • zabbix-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxySqlite","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAgent","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixFull","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxyMysql","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAppliance","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • mf-cics-tg-operator
  • + +
  • mf-cics-tg-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Mf-cics-tg","version":"v1alpha1"}
  • + +
+
+
    + +
  • nastel-xray-operator
  • + +
  • nastel-xray-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xray.nastel.com","kind":"NastelXRay","version":"v1alpha3"}
  • + +
  • {"group":"xray.nastel.com","kind":"NastelXRayTopology","version":"v1alpha3"}
  • + +
+
+
    + +
  • ako-operator
  • + +
  • ako-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ako.vmware.com","kind":"AKOConfig","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"HTTPRule","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"HostRule","version":"v1alpha1"}
  • + +
  • {"group":"networking.x-k8s.io","kind":"GatewayClass","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"AviInfraSetting","version":"v1alpha1"}
  • + +
  • {"group":"networking.x-k8s.io","kind":"Gateway","version":"v1alpha1"}
  • + +
+
+
    + +
  • vprotect-operator
  • + +
  • vprotect-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vprotect.storware.com","kind":"VProtectDBServerNode","version":"v1alpha1"}
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator
  • + +
  • citrix-cpx-with-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixCpxWithIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • dynatrace-operator
  • + +
  • dynatrace-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"DynaKube","version":"v1alpha1"}
  • + +
+
+
    + +
  • infinispan
  • + +
  • datagrid
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"infinispan.org","kind":"Cache","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Restore","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Infinispan","version":"v1"}
  • + +
  • {"group":"infinispan.org","kind":"Backup","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Batch","version":"v2alpha1"}
  • + +
+
+
    + +
  • maistraoperator
  • + +
  • servicemeshoperator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v2"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMemberRoll","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMember","version":"v1"}
  • + +
+
+
    + +
  • hpe-ezmeral-csi-operator
  • + +
  • hpe-ezmeral-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ezmeral.hpe.com","kind":"HPEEzmeralCSIDriver","version":"v1"}
  • + +
  • {"group":"ezmeral.hpe.com","kind":"HPEEzmeralNFSCSIDriver","version":"v1"}
  • + +
+
+
    + +
  • argocd-operator
  • + +
  • openshift-gitops-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"argoproj.io","kind":"ApplicationSet","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"Application","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ArgoCD","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"AppProject","version":"v1alpha1"}
  • + +
+
+
    + +
  • perceptilabs-operator-package
  • + +
  • perceptilabs-operator-package-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"perceptilabs.com","kind":"PerceptiLabs","version":"v1alpha1"}
  • + +
  • {"group":"perceptilabs.com","kind":"PerceptiLabs","version":"v1"}
  • + +
+
+
    + +
  • apicurito
  • + +
  • fuse-apicurito
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apicur.io","kind":"Apicurito","version":"v1alpha1"}
  • + +
+
+
    + +
  • pachyderm-operator
  • + +
  • pachyderm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aiml.pachyderm.com","kind":"Pachyderm","version":"v1beta1"}
  • + +
  • {"group":"aiml.pachyderm.com","kind":"PachydermExport","version":"v1beta1"}
  • + +
+
+
    + +
  • nastel-navigator-operator-certified
  • + +
  • nastel-navigator-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"navigator.nastel.com","kind":"NastelNavigator","version":"v1alpha6"}
  • + +
+
+
    + +
  • redis-enterprise-operator-cert
  • + +
  • redis-enterprise-operator-cert-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1alpha1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseDatabase","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzograph-operator
  • + +
  • anzograph-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzograph.clusters.cambridgesemantics.com","kind":"AnzoGraph","version":"v2"}
  • + +
+
+
    + +
  • xcrypt-operator
  • + +
  • xcrypt-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xcrypt.zettaset.com","kind":"XCrypt","version":"v1alpha1"}
  • + +
+
+
    + +
  • aci-containers-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aci.ctrl","kind":"AciContainersOperator","version":"v1alpha1"}
  • + +
+
+
    + +
  • uma-operator
  • + +
  • uma-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ca.broadcom.com","kind":"UniversalMonitoringAgent","version":"v1alpha1"}
  • + +
+
+
    + +
  • linstor-operator
  • + +
  • linstor-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"linstor.linbit.com","kind":"LinstorSatelliteSet","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorCSIDriver","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorController","version":"v1"}
  • + +
+
+
    + +
  • opentelemetry-operator
  • + +
  • opentelemetry-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"opentelemetry.io","kind":"OpenTelemetryCollector","version":"v1alpha1"}
  • + +
+
+
    + +
  • hedvig-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"hedvig.io","kind":"HedvigDeploy","version":"v1"}
  • + +
+
+
    + +
  • openshift-nfd-operator
  • + +
  • nfd
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"nfd.openshift.io","kind":"NodeFeatureDiscovery","version":"v1"}
  • + +
+
+
    + +
  • rocketchat-operator-certified
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"open.rocket.chat","kind":"RocketChat","version":"v1alpha1"}
  • + +
+
+
    + +
  • iomesh-operator
  • + +
  • iomesh-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"iomesh.com","kind":"IOMeshCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • cortex-fabric-operator
  • + +
  • cortex-fabric-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Cortex5","version":"v1alpha1"}
  • + +
+
+
    + +
  • federatorai-certified
  • + +
  • federatorai
  • + +
  • federatorai-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"federatorai.containers.ai","kind":"AlamedaService","version":"v1alpha1"}
  • + +
+
+
    + +
  • eclipse-che
  • + +
  • codeready-workspaces
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"org.eclipse.che","kind":"CheClusterRestore","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheBackupServerConfiguration","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterBackup","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheCluster","version":"v1"}
  • + +
+
+
    + +
  • node-red-operator-certified
  • + +
  • node-red-operator-rhm-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"nodered.com","kind":"NodeRed","version":"v1alpha1"}
  • + +
  • {"group":"nodered.com","kind":"NodeRedBackup","version":"v1alpha1"}
  • + +
  • {"group":"nodered.com","kind":"NodeRedRestore","version":"v1alpha1"}
  • + +
+
+
    + +
  • aws-event-sources-operator-certified
  • + +
  • aws-event-sources-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sources.triggermesh.com","kind":"AwsEventSources","version":"v1alpha1"}
  • + +
+
+
    + +
  • instana-agent-operator
  • + +
  • instana-agent-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1"}
  • + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1beta1"}
  • + +
+
+
    + +
  • ivory-server-app
  • + +
  • ivory-server-app-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ivoryserver.gtsoftware.com","kind":"IvoryServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzounstructured-operator
  • + +
  • anzounstructured-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzounstructured.clusters.cambridgesemantics.com","kind":"AnzoUnstructured","version":"v1"}
  • + +
+
+
    + +
  • apicurio-registry
  • + +
  • service-registry-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apicur.io","kind":"ApicurioRegistry","version":"v1alpha1"}
  • + +
  • {"group":"registry.apicur.io","kind":"ApicurioRegistry","version":"v1"}
  • + +
+
+
    + +
  • stonebranch-universalagent-operator-certified
  • + +
  • stonebranch-universalagent-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"agent.stonebranch.com","kind":"Stonebranch","version":"v1alpha1"}
  • + +
+
+
    + +
  • bigid-operator
  • + +
  • bigid-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.com","kind":"Bigid","version":"v1alpha1"}
  • + +
+
+
    + +
  • cortex-certifai-operator
  • + +
  • cortex-certifai-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cortex.cognitivescale.com","kind":"Certifai","version":"v1"}
  • + +
  • {"group":"cortex.cognitivescale.com","kind":"CertifaiScan","version":"v1"}
  • + +
+
+
    + +
  • presto-operator
  • + +
  • presto-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.starburstdata.com","kind":"StarburstPresto","version":"v1alpha1"}
  • + +
+
+
    + +
  • cockroachdb-certified
  • + +
  • cockroachdb-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"crdb.cockroachlabs.com","kind":"CrdbCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • anaconda-team-edition
  • + +
  • anaconda-team-edition-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anaconda.com","kind":"AnacondaTeamEdition","version":"v1beta1"}
  • + +
+
+
    + +
  • appranix-cps
  • + +
  • appranix-cps-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aps.appranix.com","kind":"BackupStorageLocation","version":"v1"}
  • + +
  • {"group":"aps.appranix.com","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
+
+
    + +
  • memql-certified
  • + +
  • memql-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"memsql.com","kind":"MemsqlCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • joget-openshift-operator
  • + +
  • joget-openshift-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"Joget","version":"v1alpha1"}
  • + +
+
+
    + +
  • robin-operator
  • + +
  • robin-storage-enterprise-rhmp
  • + +
  • robin-storage-express-rhmp
  • + +
  • robin-storage-trial-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"manage.robin.io","kind":"RobinCluster","version":"v1"}
  • + +
+
+
    + +
  • cyberarmor-operator-certified
  • + +
  • cyberarmor-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.cyberarmor.com","kind":"Cyberarmornamespace","version":"v1alpha1"}
  • + +
  • {"group":"apm.cyberarmor.com","kind":"Cyberarmor","version":"v1alpha1"}
  • + +
+
+
    + +
  • snyk-operator-certified
  • + +
  • snyk-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.snyk.io","kind":"SnykMonitor","version":"v1alpha1"}
  • + +
+
+
    + +
  • db2-zos-db-operator
  • + +
  • db2-zos-db-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Db2-zos-db","version":"v1alpha1"}
  • + +
+
+
    + +
  • kong-offline-operator
  • + +
  • kong-offline-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.konghq.com","kind":"Kong","version":"v1alpha1"}
  • + +
+
+
    + +
  • starburst-enterprise-helm-operator
  • + +
  • starburst-enterprise-helm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.starburstdata.com","kind":"StarburstEnterprise","version":"v1alpha1"}
  • + +
  • {"group":"charts.starburstdata.com","kind":"StarburstHive","version":"v1alpha1"}
  • + +
+
+
    + +
  • syndesis
  • + +
  • fuse-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta3"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1alpha1"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta2"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta1"}
  • + +
+
+
    + +
  • ibm-block-csi-operator
  • + +
  • ibm-block-csi-operator-community
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"csi.ibm.com","kind":"IBMBlockCSI","version":"v1"}
  • + +
+
+
    + +
  • cortex-healthcare-hub-operator
  • + +
  • cortex-hub-operator
  • + +
  • cortex-healthcare-hub-operator-rhmp
  • + +
  • cortex-hub-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hubs.cortex.cognitivescale.com","kind":"Hub","version":"v1"}
  • + +
+
+
    + +
  • sysdig-certified
  • + +
  • sysdig-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sysdig.com","kind":"SysdigAgent","version":"v1"}
  • + +
+
+
    + +
  • growth-stack-operator-certified
  • + +
  • growth-stack-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"growth-stack.operator.com","kind":"AnalyticsProxy","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"DeleteCluster","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"GrowthStackSuite","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"AirgappedDeployment","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"GenerateKey","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"StoreForwardMetric","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"FullDeployment","version":"v1alpha1"}
  • + +
+
+
    + +
  • sumologic-kubernetes-collection-helm-operator
  • + +
  • sumologic-kubernetes-collection-helm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"helm-operator.sumologic.com","kind":"SumologicCollection","version":"v1alpha1"}
  • + +
+
+
    + +
  • optimize-controller
  • + +
  • optimize-controller-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"optimize.stormforge.io","kind":"Experiment","version":"v1beta2"}
  • + +
  • {"group":"optimize.stormforge.io","kind":"Trial","version":"v1beta2"}
  • + +
+
+
    + +
  • mongodb-atlas-kubernetes
  • + +
  • mongodb-atlas-kubernetes-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"atlas.mongodb.com","kind":"AtlasProject","version":"v1"}
  • + +
  • {"group":"atlas.mongodb.com","kind":"AtlasDatabaseUser","version":"v1"}
  • + +
  • {"group":"atlas.mongodb.com","kind":"AtlasCluster","version":"v1"}
  • + +
+
+
    + +
  • citrix-ingress-controller-operator
  • + +
  • citrix-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • apicast-community-operator
  • + +
  • apicast-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apps.3scale.net","kind":"APIcast","version":"v1alpha1"}
  • + +
+
+
    + +
  • vfunction-server-operator
  • + +
  • vfunction-server-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vfunction.com","kind":"VfunctionServer","version":"v1"}
  • + +
+
+
    + +
  • cloudbees-ci
  • + +
  • cloudbees-ci-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.cloudbees.com","kind":"CloudBeesCI","version":"v1alpha1"}
  • + +
+
+
    + +
  • eddi-operator-certified
  • + +
  • eddi-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"labs.ai","kind":"Eddioperator","version":"v1alpha1"}
  • + +
  • {"group":"labs.ai","kind":"Eddi","version":"v1alpha1"}
  • + +
+
+
    + +
  • percona-postgresql-operator-certified
  • + +
  • percona-postgresql-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pg.percona.com","kind":"Pgcluster","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"PerconaPGCluster","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgreplica","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgtask","version":"v1"}
  • + +
+
+
    + +
  • oneagent-certified
  • + +
  • oneagent-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"OneAgent","version":"v1alpha1"}
  • + +
  • {"group":"dynatrace.com","kind":"OneAgentAPM","version":"v1alpha1"}
  • + +
+
+
    + +
  • hpe-csi-operator
  • + +
  • hpe-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storage.hpe.com","kind":"HPECSIDriver","version":"v1"}
  • + +
+
+
    + +
  • hawtio-operator
  • + +
  • fuse-console
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hawt.io","kind":"Hawtio","version":"v1alpha1"}
  • + +
+
+
    + +
  • as400rpc-operator
  • + +
  • as400rpc-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"As400rpc","version":"v1alpha1"}
  • + +
+
+
    + +
  • akka-cluster-operator-certified
  • + +
  • akka-cluster-operator
  • + +
  • akka-cluster-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.lightbend.com","kind":"AkkaCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • timemachine-operator
  • + +
  • timemachine-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"tm.solution-soft.com","kind":"TimeMachine","version":"v1alpha1"}
  • + +
+
+
    + +
  • hazelcast-enterprise-certified
  • + +
  • hazelcast-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • data-explorer-operator-certified
  • + +
  • data-explorer-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"data-explorer.com","kind":"DashboardWithJupyterHub","version":"v1alpha1"}
  • + +
+
+
    + +
  • model-builder-for-vision-certified
  • + +
  • model-builder-for-vision-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"modelbuilder.com","kind":"Modelbuilder","version":"v1alpha1"}
  • + +
+
+
    + +
  • nethopper-operator
  • + +
  • nethopper-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cache.nethopper","kind":"Nethopper","version":"v1alpha1"}
  • + +
+
+
    + +
  • densify-operator
  • + +
  • densify-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"densify.com","kind":"Densify","version":"v1alpha1"}
  • + +
  • {"group":"densify.com","kind":"Densify","version":"v1"}
  • + +
+
+
    + +
  • jaeger
  • + +
  • jaeger-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"jaegertracing.io","kind":"Jaeger","version":"v1"}
  • + +
+
+
    + +
  • infoscale-operator
  • + +
  • infoscale-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"infoscale.veritas.com","kind":"InfoScaleCluster","version":"v1"}
  • + +
+
+
    + +
  • gitlab-runner-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"apps.gitlab.com","kind":"Runner","version":"v1beta2"}
  • + +
+
+
    + +
  • cass-operator
  • + +
  • cass-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cassandra.datastax.com","kind":"CassandraDatacenter","version":"v1beta1"}
  • + +
+
+
    + +
  • cnvrg-operator-marketplace
  • + +
  • cnvrg-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"mlops.cnvrg.io","kind":"CnvrgApp","version":"v1"}
  • + +
+
+
    + +
  • armory-operator
  • + +
  • armory-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"spinnaker.armory.io","kind":"SpinnakerService","version":"v1alpha2"}
  • + +
+
+
    + +
  • joget-dx-operator
  • + +
  • joget-dx-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"JogetDX","version":"v1alpha1"}
  • + +
+
+
    + +
  • k10-kasten-operator
  • + +
  • k10-kasten-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apik10.kasten.io","kind":"K10","version":"v1alpha1"}
  • + +
+
+
    + +
  • neuvector-certified-operator
  • + +
  • neuvector-community-operator
  • + +
  • neuvector-certified-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.neuvector.com","kind":"Neuvector","version":"v1alpha1"}
  • + +
+
+
    + +
  • aikit-operator
  • + +
  • aikit-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aikit.intel","kind":"AIKitContainer","version":"v1alpha1"}
  • + +
+
+
    + +
  • instana-agent
  • + +
  • instana-agent-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1alpha1"}
  • + +
+
+
    + +
  • can-operator
  • + +
  • can-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"can.avanseus.com","kind":"CAN","version":"v1alpha1"}
  • + +
+
+
    + +
  • minio-operator
  • + +
  • minio-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"minio.min.io","kind":"Tenant","version":"v2"}
  • + +
+
+
    + +
  • cert-manager-operator
  • + +
  • cert-manager-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.cert-manager.io","kind":"CertManager","version":"v1alpha1"}
  • + +
+
+
    + +
  • insightedge-enterprise-operator2
  • + +
  • insightedge-enterprise-operator2-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"insightedge.gigaspaces.com","kind":"Insightedge","version":"v1alpha1"}
  • + +
+
+
    + +
  • jtrac-app-operator
  • + +
  • jtrac-app-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"example.com","kind":"jtrac","version":"v1alpha1"}
  • + +
+
+
    + +
  • atomicorp-helm-operator-certified
  • + +
  • atomicorp-helm-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"atomicorp.com","kind":"Atomicorp","version":"v1alpha1"}
  • + +
+
+
    + +
  • traefikee-redhat-certified
  • + +
  • traefikee-operator
  • + +
  • traefikee-redhat-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"containo.us","kind":"Traefikee","version":"v1alpha1"}
  • + +
+
+
    + +
  • mf-cics-ts-operator
  • + +
  • mf-cics-ts-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Mf-cics-ts","version":"v1alpha1"}
  • + +
+
+
    + +
  • awss3-operator-registry
  • + +
  • lib-bucket-provisioner
  • + +
  • ocs-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"objectbucket.io","kind":"ObjectBucketClaim","version":"v1alpha1"}
  • + +
  • {"group":"objectbucket.io","kind":"ObjectBucket","version":"v1alpha1"}
  • + +
+
+
    + +
  • ibm-spectrum-scale-csi
  • + +
  • ibm-spectrum-scale-csi-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"csi.ibm.com","kind":"CSIScaleOperator","version":"v1"}
  • + +
+
+
    + +
  • klusterlet
  • + +
  • klusterlet-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"operator.open-cluster-management.io","kind":"Klusterlet","version":"v1"}
  • + +
+
+
    + +
  • kubeturbo-certified
  • + +
  • kubeturbo
  • + +
  • kubeturbo-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1alpha1"}
  • + +
+
+
    + +
  • marketplace-games-operator
  • + +
  • marketplace-games-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"game.marketplace.redhat.com","kind":"Arcade","version":"v1"}
  • + +
+
+
    + +
  • rapidbiz-operator-certified
  • + +
  • rapidbiz-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"api.rapidbiz.com","kind":"Rapidbiz","version":"v1"}
  • + +
+
+
    + +
  • t8c-certified
  • + +
  • t8c
  • + +
  • t8c-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzo-operator
  • + +
  • anzo-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzo.cambridgesemantics.com","kind":"Anzo","version":"v1"}
  • + +
+
+
+
+ + + diff --git a/testdata/reports/catalogs/catalog_OCP_v4.8_2022-01-25.html b/testdata/reports/catalogs/catalog_OCP_v4.8_2022-01-25.html new file mode 100644 index 00000000..7616da7d --- /dev/null +++ b/testdata/reports/catalogs/catalog_OCP_v4.8_2022-01-25.html @@ -0,0 +1,4695 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Catalog Conflicts Dashboard - OCP v4.8

+

This report aims to try to identify the package distributions that are duplicated in the index informed.

+ +
+
Data from:
+

Image names:

+ +

GeneratedAt : 2022-01-25

+ +
+ +
+
Same Package Name:
+

The following are the packages found in more than one index with the same package name

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameCatalogs
tf-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
rocketchat-operator-certified +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
fep-ansible-operator +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
gitlab-runner-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
aci-containers-operator +
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
hedvig-operator +
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
+ +
+
Same APIs:
+

The following are the packages found in more than one index which are using the same apis

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PackagesCatalogsGKVs
+
    + +
  • presto-operator
  • + +
  • starburst-enterprise-helm-operator
  • + +
  • presto-operator-rhmp
  • + +
  • starburst-enterprise-helm-operator-certified-rhmp
  • + +
  • starburst-enterprise-helm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.starburstdata.com","kind":"StarburstHive","version":"v1alpha1"}
  • + +
  • {"group":"charts.starburstdata.com","kind":"StarburstPresto","version":"v1alpha1"}
  • + +
  • {"group":"charts.starburstdata.com","kind":"StarburstEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • percona-xtradb-cluster-operator-certified
  • + +
  • percona-xtradb-cluster-operator
  • + +
  • percona-xtradb-cluster-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-5-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-4-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-1-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterBackup","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBBackup","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-2-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterRestore","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-9-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-7-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-6-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-8-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-3-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-10-0"}
  • + +
+
+
    + +
  • xcrypt-operator
  • + +
  • xcrypt-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xcrypt.zettaset.com","kind":"XCrypt","version":"v1alpha1"}
  • + +
+
+
    + +
  • entando-k8s-operator
  • + +
  • entando-k8s-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"entando.org","kind":"EntandoClusterInfrastructure","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDatabaseService","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoPlugin","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoKeycloakServer","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDeBundle","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoCompositeApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoAppPluginLink","version":"v1"}
  • + +
+
+
    + +
  • community-kubevirt-hyperconverged
  • + +
  • kubevirt-hyperconverged
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1alpha3"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1alpha1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1alpha1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"OVirtProvider","version":"v1alpha1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"V2VVmware","version":"v1alpha1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1beta1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1alpha1"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1alpha1"}
  • + +
  • {"group":"nodemaintenance.kubevirt.io","kind":"NodeMaintenance","version":"v1beta1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtMetricsAggregation","version":"v1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtNodeLabellerBundle","version":"v1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1beta1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtCommonTemplatesBundle","version":"v1"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1alpha1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"KubevirtTemplateValidator","version":"v1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"SSP","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1beta1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1"}
  • + +
+
+
    + +
  • apicurito
  • + +
  • fuse-apicurito
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apicur.io","kind":"Apicurito","version":"v1alpha1"}
  • + +
+
+
    + +
  • appdynamics-operator
  • + +
  • appdynamics-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"appdynamics.com","kind":"Adam","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Hostcollector","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Clusteragent","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"InfraViz","version":"v1alpha1"}
  • + +
  • {"group":"appdynamics.com","kind":"Clustercollector","version":"v1alpha1"}
  • + +
+
+
    + +
  • hive-operator
  • + +
  • advanced-cluster-management
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hive.openshift.io","kind":"MachinePoolNameLease","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncSet","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"HelmRelease","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"MachinePool","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeprovision","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterClaim","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Deployable","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeployment","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Subscription","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1beta1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterProvision","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"Checkpoint","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Channel","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"HiveConfig","version":"v1"}
  • + +
  • {"group":"app.k8s.io","kind":"Application","version":"v1beta1"}
  • + +
  • {"group":"operator.open-cluster-management.io","kind":"ClusterManager","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSync","version":"v1alpha1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"FakeClusterInstall","version":"v1alpha1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSyncLease","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"DNSZone","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncSet","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterState","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterPool","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterImageSet","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterRelocate","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"PlacementRule","version":"v1"}
  • + +
+
+
    + +
  • instana-agent
  • + +
  • instana-agent-operator
  • + +
  • instana-agent-operator-rhmp
  • + +
  • instana-agent-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1beta1"}
  • + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1"}
  • + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1alpha1"}
  • + +
+
+
    + +
  • crane-operator
  • + +
  • mtc-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"migration.openshift.io","kind":"MigMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ResticRepository","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigCluster","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigrationProgress","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageStreamMigration","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigrationController","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"BackupStorageLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"DeleteBackupRequest","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"Schedule","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigStorage","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeRestore","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"DownloadRequest","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigPlan","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigHook","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ServerStatusRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeBackup","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigAnalytic","version":"v1alpha1"}
  • + +
+
+
    + +
  • strimzi-kafka-operator
  • + +
  • amq-streams
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta2"}
  • + +
+
+
    + +
  • ako-operator
  • + +
  • ako-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"networking.x-k8s.io","kind":"GatewayClass","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"AKOConfig","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"HostRule","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"HTTPRule","version":"v1alpha1"}
  • + +
  • {"group":"ako.vmware.com","kind":"AviInfraSetting","version":"v1alpha1"}
  • + +
  • {"group":"networking.x-k8s.io","kind":"Gateway","version":"v1alpha1"}
  • + +
+
+
    + +
  • dell-csi-operator-certified
  • + +
  • dell-csi-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"storage.dell.com","kind":"CSIPowerStore","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIIsilon","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIUnity","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIPowerMax","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIVXFlexOS","version":"v1"}
  • + +
  • {"group":"storage.dell.com","kind":"CSIPowerMaxRevProxy","version":"v1"}
  • + +
+
+
    + +
  • percona-postgresql-operator-certified
  • + +
  • percona-postgresql-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pg.percona.com","kind":"PerconaPGCluster","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgreplica","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgtask","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgcluster","version":"v1"}
  • + +
+
+
    + +
  • aqua-operator-certified
  • + +
  • aqua
  • + +
  • aqua-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.aquasec.com","kind":"AquaDatabase","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaEnforcer","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaGateway","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaCsp","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaKubeEnforcer","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaScanner","version":"v1alpha1"}
  • + +
  • {"group":"operator.aquasec.com","kind":"AquaServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator
  • + +
  • citrix-cpx-with-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixCpxWithIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • enmasse
  • + +
  • amq-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"enmasse.io","kind":"Address","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"StandardInfraConfig","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"BrokeredInfraConfig","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"StandardInfraConfig","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1alpha1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"ConsoleService","version":"v1beta1"}
  • + +
  • {"group":"user.enmasse.io","kind":"MessagingUser","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"BrokeredInfraConfig","version":"v1beta1"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressSpacePlan","version":"v1beta2"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AddressPlan","version":"v1beta2"}
  • + +
  • {"group":"admin.enmasse.io","kind":"AuthenticationService","version":"v1beta1"}
  • + +
  • {"group":"enmasse.io","kind":"AddressSpace","version":"v1beta1"}
  • + +
  • {"group":"enmasse.io","kind":"AddressSpaceSchema","version":"v1beta1"}
  • + +
+
+
    + +
  • maistraoperator
  • + +
  • servicemeshoperator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v2"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMemberRoll","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMember","version":"v1"}
  • + +
+
+
    + +
  • percona-server-mongodb-operator-certified
  • + +
  • percona-server-mongodb-operator
  • + +
  • percona-server-mongodb-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-4-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-6-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-9-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-7-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-8-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-10-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-3-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-1-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-5-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-11-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-2-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBBackup","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1alpha1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBRestore","version":"v1"}
  • + +
+
+
    + +
  • syndesis
  • + +
  • fuse-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta2"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1alpha1"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta3"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta1"}
  • + +
+
+
    + +
  • seldon-operator-certified
  • + +
  • seldon-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1alpha3"}
  • + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1"}
  • + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1alpha2"}
  • + +
+
+
    + +
  • camel-k
  • + +
  • red-hat-camel-k
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"camel.apache.org","kind":"Integration","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationPlatform","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Build","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"KameletBinding","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"Kamelet","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"CamelCatalog","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationKit","version":"v1"}
  • + +
+
+
    + +
  • cockroachdb-certified
  • + +
  • cockroachdb-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"crdb.cockroachlabs.com","kind":"CrdbCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • zabbix-operator-certified
  • + +
  • zabbix-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixServer","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAppliance","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixFull","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAgent","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxySqlite","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxyMysql","version":"v1alpha1"}
  • + +
+
+
    + +
  • mongodb-enterprise
  • + +
  • mongodb-enterprise-advanced-ibm-rhmp
  • + +
  • mongodb-enterprise-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"mongodb.com","kind":"MongoDBOpsManager","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDBUser","version":"v1"}
  • + +
  • {"group":"mongodb.com","kind":"MongoDB","version":"v1"}
  • + +
+
+
    + +
  • cyberarmor-operator-certified
  • + +
  • cyberarmor-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.cyberarmor.com","kind":"Cyberarmornamespace","version":"v1alpha1"}
  • + +
  • {"group":"apm.cyberarmor.com","kind":"Cyberarmor","version":"v1alpha1"}
  • + +
+
+
    + +
  • runtime-component-operator-certified
  • + +
  • runtime-component-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.stacks","kind":"RuntimeComponent","version":"v1beta1"}
  • + +
+
+
    + +
  • couchbase-enterprise-certified
  • + +
  • couchbase-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseAutoscaler","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v1"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v1"}
  • + +
+
+
    + +
  • jtrac-app-operator
  • + +
  • jtrac-app-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"example.com","kind":"jtrac","version":"v1alpha1"}
  • + +
+
+
    + +
  • mf-cics-ts-operator
  • + +
  • mf-cics-ts-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Mf-cics-ts","version":"v1alpha1"}
  • + +
+
+
    + +
  • portworx-certified
  • + +
  • portworx-essentials
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1"}
  • + +
+
+
    + +
  • data-explorer-operator-certified
  • + +
  • data-explorer-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"data-explorer.com","kind":"DashboardWithJupyterHub","version":"v1alpha1"}
  • + +
+
+
    + +
  • stonebranch-universalagent-operator-certified
  • + +
  • stonebranch-universalagent-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"agent.stonebranch.com","kind":"Stonebranch","version":"v1alpha1"}
  • + +
+
+
    + +
  • k8s-triliovault
  • + +
  • k8s-triliovault-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1alpha1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"License","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterRestore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1alpha1"}
  • + +
+
+
    + +
  • 3scale-community-operator
  • + +
  • 3scale-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"capabilities.3scale.net","kind":"Limit","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManagerRestore","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"MappingRule","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManagerBackup","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Binding","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Tenant","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Plan","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Metric","version":"v1alpha1"}
  • + +
  • {"group":"apps.3scale.net","kind":"APIManager","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Backend","version":"v1beta1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"API","version":"v1alpha1"}
  • + +
  • {"group":"capabilities.3scale.net","kind":"Product","version":"v1beta1"}
  • + +
+
+
    + +
  • mf-cics-tg-operator
  • + +
  • mf-cics-tg-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Mf-cics-tg","version":"v1alpha1"}
  • + +
+
+
    + +
  • nastel-navigator-operator-certified
  • + +
  • nastel-navigator-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"navigator.nastel.com","kind":"NastelNavigator","version":"v1alpha6"}
  • + +
+
+
    + +
  • cloudbees-ci
  • + +
  • cloudbees-ci-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.cloudbees.com","kind":"CloudBeesCI","version":"v1alpha1"}
  • + +
+
+
    + +
  • konveyor-forklift-operator
  • + +
  • mtv-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"forklift.konveyor.io","kind":"NetworkMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"StorageMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Host","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"ForkliftController","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Plan","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Migration","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Provisioner","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Hook","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Provider","version":"v1beta1"}
  • + +
+
+
    + +
  • kubemq-operator-marketplace
  • + +
  • kubemq-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1beta1"}
  • + +
+
+
    + +
  • growth-stack-operator-certified
  • + +
  • growth-stack-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"growth-stack.operator.com","kind":"AnalyticsProxy","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"GrowthStackSuite","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"AirgappedDeployment","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"DeleteCluster","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"StoreForwardMetric","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"FullDeployment","version":"v1alpha1"}
  • + +
  • {"group":"growth-stack.operator.com","kind":"GenerateKey","version":"v1alpha1"}
  • + +
+
+
    + +
  • kpow-io-certified
  • + +
  • kpow-io-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kpow.io","kind":"Kpow","version":"v1beta1"}
  • + +
+
+
    + +
  • eamli-operator
  • + +
  • eamli-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"eamli.white.space","kind":"Executor","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"WebApp","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"SourceData","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"ProductServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"Stack","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"APIServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"CoreModelServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • jaeger
  • + +
  • jaeger-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"jaegertracing.io","kind":"Jaeger","version":"v1"}
  • + +
+
+
    + +
  • minio-operator
  • + +
  • minio-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"minio.min.io","kind":"Tenant","version":"v2"}
  • + +
+
+
    + +
  • eclipse-che
  • + +
  • codeready-workspaces
  • + +
  • codeready-workspaces2
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"org.eclipse.che","kind":"CheCluster","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheBackupServerConfiguration","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterBackup","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterRestore","version":"v1"}
  • + +
+
+
    + +
  • infinispan
  • + +
  • datagrid
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"infinispan.org","kind":"Infinispan","version":"v1"}
  • + +
  • {"group":"infinispan.org","kind":"Cache","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Backup","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Batch","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Restore","version":"v2alpha1"}
  • + +
+
+
    + +
  • fep-ansible-operator
  • + +
  • fujitsu-enterprise-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"fep.fujitsu.io","kind":"FEPBackup","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPUser","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPCluster","version":"v2"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPConfig","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPRestore","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPAction","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPVolume","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPCert","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPPgpool2Cert","version":"v1"}
  • + +
  • {"group":"fep.fujitsu.io","kind":"FEPPgpool2","version":"v1"}
  • + +
+
+
    + +
  • memql-certified
  • + +
  • memql-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"memsql.com","kind":"MemsqlCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • gitlab-runner-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"apps.gitlab.com","kind":"Runner","version":"v1beta2"}
  • + +
+
+
    + +
  • kubeplus
  • + +
  • kubeplus-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"workflows.kubeplus","kind":"ResourceComposition","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourceEvent","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourceMonitor","version":"v1alpha1"}
  • + +
  • {"group":"workflows.kubeplus","kind":"ResourcePolicy","version":"v1alpha1"}
  • + +
+
+
    + +
  • linstor-operator
  • + +
  • linstor-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"linstor.linbit.com","kind":"LinstorController","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorCSIDriver","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorSatelliteSet","version":"v1"}
  • + +
+
+
    + +
  • joget-openshift-operator
  • + +
  • joget-openshift-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"Joget","version":"v1alpha1"}
  • + +
+
+
    + +
  • ibm-block-csi-operator
  • + +
  • ibm-block-csi-operator-community
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"csi.ibm.com","kind":"IBMBlockCSI","version":"v1"}
  • + +
+
+
    + +
  • ovms-operator
  • + +
  • ovms-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"intel.com","kind":"Notebook","version":"v1alpha1"}
  • + +
  • {"group":"intel.com","kind":"ModelServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • datadog-operator-certified
  • + +
  • datadog-operator
  • + +
  • datadog-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"datadoghq.com","kind":"DatadogMonitor","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogAgent","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogMetric","version":"v1alpha1"}
  • + +
+
+
    + +
  • t8c-certified
  • + +
  • t8c
  • + +
  • t8c-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1alpha1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1"}
  • + +
+
+
    + +
  • nethopper-operator
  • + +
  • nethopper-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cache.nethopper","kind":"Nethopper","version":"v1alpha1"}
  • + +
+
+
    + +
  • akka-cluster-operator-certified
  • + +
  • akka-cluster-operator
  • + +
  • akka-cluster-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.lightbend.com","kind":"AkkaCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • hpe-csi-operator
  • + +
  • hpe-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storage.hpe.com","kind":"HPECSIDriver","version":"v1"}
  • + +
+
+
    + +
  • kubeturbo-certified
  • + +
  • kubeturbo
  • + +
  • kubeturbo-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1alpha1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1"}
  • + +
+
+
    + +
  • splunk-certified
  • + +
  • splunk
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"enterprise.splunk.com","kind":"LicenseMaster","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"Standalone","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"Spark","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"SearchHeadCluster","version":"v1alpha2"}
  • + +
  • {"group":"enterprise.splunk.com","kind":"IndexerCluster","version":"v1alpha2"}
  • + +
+
+
    + +
  • pachyderm-operator
  • + +
  • pachyderm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aiml.pachyderm.com","kind":"PachydermExport","version":"v1beta1"}
  • + +
  • {"group":"aiml.pachyderm.com","kind":"Pachyderm","version":"v1beta1"}
  • + +
+
+
    + +
  • cnvrg-operator-marketplace
  • + +
  • cnvrg-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"mlops.cnvrg.io","kind":"CnvrgApp","version":"v1"}
  • + +
+
+
    + +
  • redis-enterprise-operator-cert
  • + +
  • redis-enterprise-operator-cert-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1alpha1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseDatabase","version":"v1alpha1"}
  • + +
+
+
    + +
  • argocd-operator
  • + +
  • argocd-operator-helm
  • + +
  • openshift-gitops-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"argoproj.io","kind":"ArgoCD","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"Application","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"AppProject","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ApplicationSet","version":"v1alpha1"}
  • + +
+
+
    + +
  • iomesh-operator
  • + +
  • iomesh-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"iomesh.com","kind":"IOMeshCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • perceptilabs-operator-package
  • + +
  • perceptilabs-operator-package-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"perceptilabs.com","kind":"PerceptiLabs","version":"v1alpha1"}
  • + +
  • {"group":"perceptilabs.com","kind":"PerceptiLabs","version":"v1"}
  • + +
+
+
    + +
  • densify-operator
  • + +
  • densify-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"densify.com","kind":"Densify","version":"v1"}
  • + +
  • {"group":"densify.com","kind":"Densify","version":"v1alpha1"}
  • + +
+
+
    + +
  • hpe-ezmeral-csi-operator
  • + +
  • hpe-ezmeral-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ezmeral.hpe.com","kind":"HPEEzmeralCSIDriver","version":"v1"}
  • + +
  • {"group":"ezmeral.hpe.com","kind":"HPEEzmeralNFSCSIDriver","version":"v1"}
  • + +
+
+
    + +
  • poison-pill-operator
  • + +
  • poison-pill-manager
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediation","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediationTemplate","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillConfig","version":"v1alpha1"}
  • + +
+
+
    + +
  • awss3-operator-registry
  • + +
  • lib-bucket-provisioner
  • + +
  • ocs-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"objectbucket.io","kind":"ObjectBucket","version":"v1alpha1"}
  • + +
  • {"group":"objectbucket.io","kind":"ObjectBucketClaim","version":"v1alpha1"}
  • + +
+
+
    + +
  • rapidbiz-operator-certified
  • + +
  • rapidbiz-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"api.rapidbiz.com","kind":"Rapidbiz","version":"v1"}
  • + +
+
+
    + +
  • crunchy-postgres-operator
  • + +
  • postgresql
  • + +
  • crunchy-postgres-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"postgres-operator.crunchydata.com","kind":"PostgresCluster","version":"v1beta1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgreplica","version":"v1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgpolicy","version":"v1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgtask","version":"v1"}
  • + +
  • {"group":"crunchydata.com","kind":"Pgcluster","version":"v1"}
  • + +
+
+
    + +
  • node-red-operator-certified
  • + +
  • node-red-operator-rhm-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"nodered.com","kind":"NodeRedRestore","version":"v1alpha1"}
  • + +
  • {"group":"nodered.com","kind":"NodeRed","version":"v1alpha1"}
  • + +
  • {"group":"nodered.com","kind":"NodeRedBackup","version":"v1alpha1"}
  • + +
+
+
    + +
  • cortex-certifai-operator
  • + +
  • cortex-certifai-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cortex.cognitivescale.com","kind":"Certifai","version":"v1"}
  • + +
  • {"group":"cortex.cognitivescale.com","kind":"CertifaiScan","version":"v1"}
  • + +
+
+
    + +
  • armory-operator
  • + +
  • armory-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"spinnaker.armory.io","kind":"SpinnakerService","version":"v1alpha2"}
  • + +
+
+
    + +
  • model-builder-for-vision-certified
  • + +
  • model-builder-for-vision-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"modelbuilder.com","kind":"Modelbuilder","version":"v1alpha1"}
  • + +
+
+
    + +
  • citrix-ingress-controller-operator
  • + +
  • citrix-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • aci-containers-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aci.ctrl","kind":"AciContainersOperator","version":"v1alpha1"}
  • + +
+
+
    + +
  • eddi-operator-certified
  • + +
  • eddi-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"labs.ai","kind":"Eddi","version":"v1alpha1"}
  • + +
  • {"group":"labs.ai","kind":"Eddioperator","version":"v1alpha1"}
  • + +
+
+
    + +
  • hawtio-operator
  • + +
  • fuse-console
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hawt.io","kind":"Hawtio","version":"v1alpha1"}
  • + +
+
+
    + +
  • keycloak-operator
  • + +
  • rhsso-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"keycloak.org","kind":"Keycloak","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakUser","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakRealm","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakClient","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakBackup","version":"v1alpha1"}
  • + +
+
+
    + +
  • sysdig-certified
  • + +
  • sysdig-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sysdig.com","kind":"SysdigAgent","version":"v1"}
  • + +
+
+
    + +
  • anzograph-operator
  • + +
  • anzograph-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzograph.clusters.cambridgesemantics.com","kind":"AnzoGraph","version":"v2"}
  • + +
+
+
    + +
  • ivory-server-app
  • + +
  • ivory-server-app-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ivoryserver.gtsoftware.com","kind":"IvoryServer","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzounstructured-operator
  • + +
  • anzounstructured-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzounstructured.clusters.cambridgesemantics.com","kind":"AnzoUnstructured","version":"v1"}
  • + +
+
+
    + +
  • openshift-nfd-operator
  • + +
  • nfd
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"nfd.openshift.io","kind":"NodeFeatureDiscovery","version":"v1"}
  • + +
+
+
    + +
  • appranix-cps
  • + +
  • appranix-cps-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aps.appranix.com","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
  • {"group":"aps.appranix.com","kind":"BackupStorageLocation","version":"v1"}
  • + +
+
+
    + +
  • atomicorp-helm-operator-certified
  • + +
  • atomicorp-helm-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"atomicorp.com","kind":"Atomicorp","version":"v1alpha1"}
  • + +
+
+
    + +
  • bigid-operator
  • + +
  • bigid-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.com","kind":"Bigid","version":"v1alpha1"}
  • + +
+
+
    + +
  • apicurio-registry
  • + +
  • service-registry-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"registry.apicur.io","kind":"ApicurioRegistry","version":"v1"}
  • + +
  • {"group":"apicur.io","kind":"ApicurioRegistry","version":"v1alpha1"}
  • + +
+
+
    + +
  • hedvig-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"hedvig.io","kind":"HedvigDeploy","version":"v1"}
  • + +
+
+
    + +
  • traefikee-redhat-certified
  • + +
  • traefikee-operator
  • + +
  • traefikee-redhat-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"containo.us","kind":"Traefikee","version":"v1alpha1"}
  • + +
+
+
    + +
  • nastel-xray-operator
  • + +
  • nastel-xray-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xray.nastel.com","kind":"NastelXRay","version":"v1alpha3"}
  • + +
  • {"group":"xray.nastel.com","kind":"NastelXRayTopology","version":"v1alpha3"}
  • + +
+
+
    + +
  • k10-kasten-operator
  • + +
  • k10-kasten-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apik10.kasten.io","kind":"K10","version":"v1alpha1"}
  • + +
+
+
    + +
  • snyk-operator-certified
  • + +
  • snyk-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.snyk.io","kind":"SnykMonitor","version":"v1alpha1"}
  • + +
+
+
    + +
  • cert-manager-operator
  • + +
  • cert-manager-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"operator.cert-manager.io","kind":"CertManager","version":"v1alpha1"}
  • + +
+
+
    + +
  • cass-operator
  • + +
  • cass-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"cassandra.datastax.com","kind":"CassandraDatacenter","version":"v1beta1"}
  • + +
+
+
    + +
  • can-operator
  • + +
  • can-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"can.avanseus.com","kind":"CAN","version":"v1alpha1"}
  • + +
+
+
    + +
  • optimize-controller
  • + +
  • optimize-controller-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"optimize.stormforge.io","kind":"Trial","version":"v1beta2"}
  • + +
  • {"group":"optimize.stormforge.io","kind":"Experiment","version":"v1beta2"}
  • + +
+
+
    + +
  • aikit-operator
  • + +
  • aikit-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aikit.intel","kind":"AIKitContainer","version":"v1alpha1"}
  • + +
+
+
    + +
  • federatorai-certified
  • + +
  • federatorai
  • + +
  • federatorai-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"federatorai.containers.ai","kind":"AlamedaService","version":"v1alpha1"}
  • + +
+
+
    + +
  • amcop-operator
  • + +
  • amcop-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"amcop.aarnanetworks.com","kind":"Installer","version":"v1alpha1"}
  • + +
+
+
    + +
  • cortex-healthcare-hub-operator
  • + +
  • cortex-hub-operator
  • + +
  • cortex-healthcare-hub-operator-rhmp
  • + +
  • cortex-hub-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hubs.cortex.cognitivescale.com","kind":"Hub","version":"v1"}
  • + +
+
+
    + +
  • kong-offline-operator
  • + +
  • kong-offline-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.konghq.com","kind":"Kong","version":"v1alpha1"}
  • + +
+
+
    + +
  • insightedge-enterprise-operator2
  • + +
  • insightedge-enterprise-operator2-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"insightedge.gigaspaces.com","kind":"Insightedge","version":"v1alpha1"}
  • + +
+
+
    + +
  • db2-zos-db-operator
  • + +
  • db2-zos-db-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"Db2-zos-db","version":"v1alpha1"}
  • + +
+
+
    + +
  • portshift-controller-operator
  • + +
  • portshift-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"portshift.io","kind":"PortshiftInstaller","version":"v1"}
  • + +
+
+
    + +
  • neuvector-certified-operator
  • + +
  • neuvector-community-operator
  • + +
  • neuvector-certified-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.neuvector.com","kind":"Neuvector","version":"v1alpha1"}
  • + +
+
+
    + +
  • timemachine-operator
  • + +
  • timemachine-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"tm.solution-soft.com","kind":"TimeMachine","version":"v1alpha1"}
  • + +
+
+
    + +
  • ibm-spectrum-scale-csi
  • + +
  • ibm-spectrum-scale-csi-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"csi.ibm.com","kind":"CSIScaleOperator","version":"v1"}
  • + +
+
+
    + +
  • as400rpc-operator
  • + +
  • as400rpc-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openlegacy.com","kind":"As400rpc","version":"v1alpha1"}
  • + +
+
+
    + +
  • uma-operator
  • + +
  • uma-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"ca.broadcom.com","kind":"UniversalMonitoringAgent","version":"v1alpha1"}
  • + +
+
+
    + +
  • aws-event-sources-operator-certified
  • + +
  • aws-event-sources-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sources.triggermesh.com","kind":"AwsEventSources","version":"v1alpha1"}
  • + +
+
+
    + +
  • storageos2
  • + +
  • storageos2-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storageos.com","kind":"StorageOSCluster","version":"v1"}
  • + +
+
+
    + +
  • apicast-community-operator
  • + +
  • apicast-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apps.3scale.net","kind":"APIcast","version":"v1alpha1"}
  • + +
+
+
    + +
  • infoscale-operator
  • + +
  • infoscale-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"infoscale.veritas.com","kind":"InfoScaleCluster","version":"v1"}
  • + +
+
+
    + +
  • hazelcast-enterprise-certified
  • + +
  • hazelcast-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • klusterlet
  • + +
  • klusterlet-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"operator.open-cluster-management.io","kind":"Klusterlet","version":"v1"}
  • + +
+
+
    + +
  • cortex-fabric-operator
  • + +
  • cortex-fabric-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Cortex5","version":"v1alpha1"}
  • + +
+
+
    + +
  • openunison-ocp-certified
  • + +
  • openunison-ocp-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"openunison.tremolo.io","kind":"OpenUnison","version":"v1"}
  • + +
+
+
    + +
  • hazelcast-jet-enterprise-operator
  • + +
  • hazelcast-jet-enterprise-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastJetEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • rocketchat-operator-certified
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"open.rocket.chat","kind":"RocketChat","version":"v1alpha1"}
  • + +
+
+
    + +
  • kiali
  • + +
  • kiali-ossm
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kiali.io","kind":"Kiali","version":"v1alpha1"}
  • + +
  • {"group":"monitoring.kiali.io","kind":"MonitoringDashboard","version":"v1alpha1"}
  • + +
+
+
    + +
  • oneagent-certified
  • + +
  • oneagent-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"OneAgent","version":"v1alpha1"}
  • + +
  • {"group":"dynatrace.com","kind":"OneAgentAPM","version":"v1alpha1"}
  • + +
+
+
    + +
  • vprotect-operator
  • + +
  • vprotect-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vprotect.storware.com","kind":"VProtectDBServerNode","version":"v1alpha1"}
  • + +
+
+
    + +
  • anaconda-team-edition
  • + +
  • anaconda-team-edition-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anaconda.com","kind":"AnacondaTeamEdition","version":"v1beta1"}
  • + +
+
+
    + +
  • anzo-operator
  • + +
  • anzo-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzo.cambridgesemantics.com","kind":"Anzo","version":"v1"}
  • + +
+
+
    + +
  • opentelemetry-operator
  • + +
  • opentelemetry-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"opentelemetry.io","kind":"OpenTelemetryCollector","version":"v1alpha1"}
  • + +
+
+
    + +
  • marketplace-games-operator
  • + +
  • marketplace-games-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"game.marketplace.redhat.com","kind":"Arcade","version":"v1"}
  • + +
+
+
    + +
  • dynatrace-operator
  • + +
  • dynatrace-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"DynaKube","version":"v1alpha1"}
  • + +
+
+
    + +
  • vfunction-server-operator
  • + +
  • vfunction-server-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vfunction.com","kind":"VfunctionServer","version":"v1"}
  • + +
+
+
    + +
  • joget-dx-operator
  • + +
  • joget-dx-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"JogetDX","version":"v1alpha1"}
  • + +
+
+
+
+ + + diff --git a/testdata/reports/catalogs/catalog_OCP_v4.9_2022-01-25.html b/testdata/reports/catalogs/catalog_OCP_v4.9_2022-01-25.html new file mode 100644 index 00000000..5d0ad9da --- /dev/null +++ b/testdata/reports/catalogs/catalog_OCP_v4.9_2022-01-25.html @@ -0,0 +1,2488 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Catalog Conflicts Dashboard - OCP v4.9

+

This report aims to try to identify the package distributions that are duplicated in the index informed.

+ +
+
Data from:
+

Image names:

+ +

GeneratedAt : 2022-01-25

+ +
+ +
+
Same Package Name:
+

The following are the packages found in more than one index with the same package name

+ + + + + + + + + + + + + + + + + + + +
Package NameCatalogs
node-healthcheck-operator +
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
+ +
+
Same APIs:
+

The following are the packages found in more than one index which are using the same apis

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PackagesCatalogsGKVs
+
    + +
  • konveyor-forklift-operator
  • + +
  • mtv-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"forklift.konveyor.io","kind":"Provisioner","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"ForkliftController","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"NetworkMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Plan","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Host","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"StorageMap","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Migration","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Hook","version":"v1beta1"}
  • + +
  • {"group":"forklift.konveyor.io","kind":"Provider","version":"v1beta1"}
  • + +
+
+
    + +
  • camel-k
  • + +
  • red-hat-camel-k
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"camel.apache.org","kind":"Build","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Integration","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"KameletBinding","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationKit","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"IntegrationPlatform","version":"v1"}
  • + +
  • {"group":"camel.apache.org","kind":"Kamelet","version":"v1alpha1"}
  • + +
  • {"group":"camel.apache.org","kind":"CamelCatalog","version":"v1"}
  • + +
+
+
    + +
  • hive-operator
  • + +
  • advanced-cluster-management
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSyncLease","version":"v1alpha1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Channel","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncSet","version":"v1"}
  • + +
  • {"group":"operator.open-cluster-management.io","kind":"ClusterManager","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1beta1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterImageSet","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"FakeClusterInstall","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterPool","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SelectorSyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterState","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncIdentityProvider","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterRelocate","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"SyncSet","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"MachinePool","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"HelmRelease","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"Checkpoint","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterClaim","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Subscription","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"HiveConfig","version":"v1"}
  • + +
  • {"group":"hiveinternal.openshift.io","kind":"ClusterSync","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterProvision","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"MachinePoolNameLease","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"DNSZone","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"GitOpsCluster","version":"v1alpha1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeprovision","version":"v1"}
  • + +
  • {"group":"hive.openshift.io","kind":"ClusterDeployment","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"Deployable","version":"v1"}
  • + +
  • {"group":"apps.open-cluster-management.io","kind":"PlacementRule","version":"v1"}
  • + +
  • {"group":"app.k8s.io","kind":"Application","version":"v1beta1"}
  • + +
+
+
    + +
  • percona-server-mongodb-operator-certified
  • + +
  • percona-server-mongodb-operator
  • + +
  • percona-server-mongodb-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-8-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBBackup","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1alpha1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDBRestore","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-1-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-5-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-7-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-2-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-10-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-6-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-9-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-11-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-4-0"}
  • + +
  • {"group":"psmdb.percona.com","kind":"PerconaServerMongoDB","version":"v1-3-0"}
  • + +
+
+
    + +
  • infinispan
  • + +
  • datagrid
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"infinispan.org","kind":"Backup","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Cache","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Batch","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Restore","version":"v2alpha1"}
  • + +
  • {"group":"infinispan.org","kind":"Infinispan","version":"v1"}
  • + +
+
+
    + +
  • t8c-certified
  • + +
  • t8c
  • + +
  • t8c-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Xl","version":"v1alpha1"}
  • + +
+
+
    + +
  • crane-operator
  • + +
  • mtc-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"migration.openshift.io","kind":"MigMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"VolumeSnapshotLocation","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigHook","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeBackup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageMigration","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"DownloadRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigStorage","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigAnalytic","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"ServerStatusRequest","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"ResticRepository","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigrationController","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigPlan","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"MigCluster","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"BackupStorageLocation","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Schedule","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigration","version":"v1alpha1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectVolumeMigrationProgress","version":"v1alpha1"}
  • + +
  • {"group":"velero.io","kind":"PodVolumeRestore","version":"v1"}
  • + +
  • {"group":"velero.io","kind":"DeleteBackupRequest","version":"v1"}
  • + +
  • {"group":"migration.openshift.io","kind":"DirectImageStreamMigration","version":"v1alpha1"}
  • + +
+
+
    + +
  • entando-k8s-operator
  • + +
  • entando-k8s-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"entando.org","kind":"EntandoClusterInfrastructure","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoCompositeApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoPlugin","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoKeycloakServer","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDeBundle","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoDatabaseService","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoApp","version":"v1"}
  • + +
  • {"group":"entando.org","kind":"EntandoAppPluginLink","version":"v1"}
  • + +
+
+
    + +
  • couchbase-enterprise-certified
  • + +
  • couchbase-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"couchbase.com","kind":"CouchbaseCluster","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseRoleBinding","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseReplication","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseAutoscaler","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseEphemeralBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBackupRestore","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseBucket","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseGroup","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseUser","version":"v2"}
  • + +
  • {"group":"couchbase.com","kind":"CouchbaseMemcachedBucket","version":"v2"}
  • + +
+
+
    + +
  • klusterlet
  • + +
  • klusterlet-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"operator.open-cluster-management.io","kind":"Klusterlet","version":"v1"}
  • + +
+
+
    + +
  • zabbix-operator-certified
  • + +
  • zabbix-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxyMysql","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixFull","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAppliance","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixProxySqlite","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixServer","version":"v1alpha1"}
  • + +
  • {"group":"kubernetes.zabbix.com","kind":"ZabbixAgent","version":"v1alpha1"}
  • + +
+
+
    + +
  • cloudbees-ci
  • + +
  • cloudbees-ci-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.cloudbees.com","kind":"CloudBeesCI","version":"v1alpha1"}
  • + +
+
+
    + +
  • hpe-csi-operator
  • + +
  • hpe-csi-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storage.hpe.com","kind":"HPECSIDriver","version":"v1"}
  • + +
+
+
    + +
  • minio-operator
  • + +
  • minio-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"minio.min.io","kind":"Tenant","version":"v2"}
  • + +
+
+
    + +
  • k8s-triliovault
  • + +
  • k8s-triliovault-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"triliovault.trilio.io","kind":"Hook","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"License","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"BackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Policy","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterRestore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Restore","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Backup","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"ClusterBackupPlan","version":"v1"}
  • + +
  • {"group":"triliovault.trilio.io","kind":"Target","version":"v1"}
  • + +
+
+
    + +
  • kubemq-operator-marketplace
  • + +
  • kubemq-operator-marketplace-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1beta1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqDashboard","version":"v1alpha1"}
  • + +
  • {"group":"core.k8s.kubemq.io","kind":"KubemqConnector","version":"v1alpha1"}
  • + +
+
+
    + +
  • special-resource-operator
  • + +
  • openshift-special-resource-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"sro.openshift.io","kind":"SpecialResource","version":"v1beta1"}
  • + +
+
+
    + +
  • eamli-operator
  • + +
  • eamli-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"eamli.white.space","kind":"ProductServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"Stack","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"SourceData","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"Executor","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"CoreModelServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"APIServer","version":"v1alpha1"}
  • + +
  • {"group":"eamli.white.space","kind":"WebApp","version":"v1alpha1"}
  • + +
+
+
    + +
  • datadog-operator-certified
  • + +
  • datadog-operator
  • + +
  • datadog-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"datadoghq.com","kind":"DatadogAgent","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogMetric","version":"v1alpha1"}
  • + +
  • {"group":"datadoghq.com","kind":"DatadogMonitor","version":"v1alpha1"}
  • + +
+
+
    + +
  • strimzi-kafka-operator
  • + +
  • amq-streams
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnectS2I","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaBridge","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker2","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaTopic","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnector","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaConnect","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"Kafka","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaRebalance","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1alpha1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta2"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaUser","version":"v1beta1"}
  • + +
  • {"group":"kafka.strimzi.io","kind":"KafkaMirrorMaker","version":"v1beta2"}
  • + +
+
+
    + +
  • iomesh-operator
  • + +
  • iomesh-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"iomesh.com","kind":"IOMeshCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • percona-xtradb-cluster-operator-certified
  • + +
  • percona-xtradb-cluster-operator
  • + +
  • percona-xtradb-cluster-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterRestore","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-9-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-6-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-3-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-10-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-8-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-4-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-7-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-2-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBBackup","version":"v1alpha1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBClusterBackup","version":"v1"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-5-0"}
  • + +
  • {"group":"pxc.percona.com","kind":"PerconaXtraDBCluster","version":"v1-1-0"}
  • + +
+
+
    + +
  • apicurio-registry
  • + +
  • service-registry-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"registry.apicur.io","kind":"ApicurioRegistry","version":"v1"}
  • + +
+
+
    + +
  • opentelemetry-operator
  • + +
  • opentelemetry-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"opentelemetry.io","kind":"OpenTelemetryCollector","version":"v1alpha1"}
  • + +
+
+
    + +
  • kubeturbo-certified
  • + +
  • kubeturbo
  • + +
  • kubeturbo-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1"}
  • + +
  • {"group":"charts.helm.k8s.io","kind":"Kubeturbo","version":"v1alpha1"}
  • + +
+
+
    + +
  • community-kubevirt-hyperconverged
  • + +
  • kubevirt-hyperconverged
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1alpha1"}
  • + +
  • {"group":"ssp.kubevirt.io","kind":"SSP","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1alpha1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"VMImportConfig","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"OVirtProvider","version":"v1alpha1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1beta1"}
  • + +
  • {"group":"hco.kubevirt.io","kind":"HyperConverged","version":"v1beta1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1alpha3"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1beta1"}
  • + +
  • {"group":"networkaddonsoperator.network.kubevirt.io","kind":"NetworkAddonsConfig","version":"v1"}
  • + +
  • {"group":"kubevirt.io","kind":"KubeVirt","version":"v1"}
  • + +
  • {"group":"cdi.kubevirt.io","kind":"CDI","version":"v1alpha1"}
  • + +
  • {"group":"hostpathprovisioner.kubevirt.io","kind":"HostPathProvisioner","version":"v1alpha1"}
  • + +
  • {"group":"nodemaintenance.kubevirt.io","kind":"NodeMaintenance","version":"v1beta1"}
  • + +
  • {"group":"v2v.kubevirt.io","kind":"V2VVmware","version":"v1alpha1"}
  • + +
+
+
    + +
  • openshift-nfd-operator
  • + +
  • nfd
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"nfd.openshift.io","kind":"NodeFeatureDiscovery","version":"v1"}
  • + +
+
+
    + +
  • portworx-certified
  • + +
  • portworx-essentials
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1alpha1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageCluster","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1"}
  • + +
  • {"group":"core.libopenstorage.org","kind":"StorageNode","version":"v1alpha1"}
  • + +
+
+
    + +
  • sysdig-certified
  • + +
  • sysdig-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"sysdig.com","kind":"SysdigAgent","version":"v1"}
  • + +
+
+
    + +
  • instana-agent-operator
  • + +
  • instana-agent-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1beta1"}
  • + +
  • {"group":"instana.io","kind":"InstanaAgent","version":"v1"}
  • + +
+
+
    + +
  • eclipse-che
  • + +
  • codeready-workspaces
  • + +
  • codeready-workspaces2
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"org.eclipse.che","kind":"CheBackupServerConfiguration","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheCluster","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterRestore","version":"v1"}
  • + +
  • {"group":"org.eclipse.che","kind":"CheClusterBackup","version":"v1"}
  • + +
+
+
    + +
  • storageos2
  • + +
  • storageos2-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"storageos.com","kind":"StorageOSCluster","version":"v1"}
  • + +
+
+
    + +
  • linstor-operator
  • + +
  • linstor-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"linstor.linbit.com","kind":"LinstorSatelliteSet","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorCSIDriver","version":"v1"}
  • + +
  • {"group":"linstor.linbit.com","kind":"LinstorController","version":"v1"}
  • + +
+
+
    + +
  • syndesis
  • + +
  • fuse-online
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1alpha1"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta3"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta2"}
  • + +
  • {"group":"syndesis.io","kind":"Syndesis","version":"v1beta1"}
  • + +
+
+
    + +
  • percona-postgresql-operator-certified
  • + +
  • percona-postgresql-operator-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"pg.percona.com","kind":"PerconaPGCluster","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgreplica","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgcluster","version":"v1"}
  • + +
  • {"group":"pg.percona.com","kind":"Pgtask","version":"v1"}
  • + +
+
+
    + +
  • jaeger
  • + +
  • jaeger-product
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"jaegertracing.io","kind":"Jaeger","version":"v1"}
  • + +
+
+
    + +
  • xcrypt-operator
  • + +
  • xcrypt-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"xcrypt.zettaset.com","kind":"XCrypt","version":"v1alpha1"}
  • + +
+
+
    + +
  • node-healthcheck-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"remediation.medik8s.io","kind":"NodeHealthCheck","version":"v1alpha1"}
  • + +
+
+
    + +
  • ovms-operator
  • + +
  • ovms-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"intel.com","kind":"ModelServer","version":"v1alpha1"}
  • + +
  • {"group":"intel.com","kind":"Notebook","version":"v1alpha1"}
  • + +
+
+
    + +
  • marketplace-games-operator
  • + +
  • marketplace-games-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"game.marketplace.redhat.com","kind":"Arcade","version":"v1"}
  • + +
+
+
    + +
  • apicurito
  • + +
  • fuse-apicurito
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"apicur.io","kind":"Apicurito","version":"v1alpha1"}
  • + +
+
+
    + +
  • maistraoperator
  • + +
  • servicemeshoperator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshControlPlane","version":"v2"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMemberRoll","version":"v1"}
  • + +
  • {"group":"maistra.io","kind":"ServiceMeshMember","version":"v1"}
  • + +
+
+
    + +
  • anzograph-operator
  • + +
  • anzograph-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzograph.clusters.cambridgesemantics.com","kind":"AnzoGraph","version":"v2"}
  • + +
+
+
    + +
  • ibm-block-csi-operator
  • + +
  • ibm-block-csi-operator-community
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"csi.ibm.com","kind":"IBMBlockCSI","version":"v1"}
  • + +
+
+
    + +
  • keycloak-operator
  • + +
  • rhsso-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"keycloak.org","kind":"KeycloakClient","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"Keycloak","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakBackup","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakUser","version":"v1alpha1"}
  • + +
  • {"group":"keycloak.org","kind":"KeycloakRealm","version":"v1alpha1"}
  • + +
+
+
    + +
  • citrix-ingress-controller-operator
  • + +
  • citrix-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • argocd-operator
  • + +
  • openshift-gitops-operator
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"argoproj.io","kind":"Application","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"AppProject","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ApplicationSet","version":"v1alpha1"}
  • + +
  • {"group":"argoproj.io","kind":"ArgoCD","version":"v1alpha1"}
  • + +
+
+
    + +
  • neuvector-certified-operator
  • + +
  • neuvector-community-operator
  • + +
  • neuvector-certified-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"apm.neuvector.com","kind":"Neuvector","version":"v1alpha1"}
  • + +
+
+
    + +
  • joget-dx-operator
  • + +
  • joget-dx-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.joget.com","kind":"JogetDX","version":"v1alpha1"}
  • + +
+
+
    + +
  • poison-pill-operator
  • + +
  • poison-pill-manager
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediation","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillConfig","version":"v1alpha1"}
  • + +
  • {"group":"poison-pill.medik8s.io","kind":"PoisonPillRemediationTemplate","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzounstructured-operator
  • + +
  • anzounstructured-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzounstructured.clusters.cambridgesemantics.com","kind":"AnzoUnstructured","version":"v1"}
  • + +
+
+
    + +
  • dynatrace-operator
  • + +
  • dynatrace-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"dynatrace.com","kind":"DynaKube","version":"v1alpha1"}
  • + +
+
+
    + +
  • redis-enterprise-operator-cert
  • + +
  • redis-enterprise-operator-cert-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1alpha1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseCluster","version":"v1"}
  • + +
  • {"group":"app.redislabs.com","kind":"RedisEnterpriseDatabase","version":"v1alpha1"}
  • + +
+
+
    + +
  • pachyderm-operator
  • + +
  • pachyderm-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aiml.pachyderm.com","kind":"Pachyderm","version":"v1beta1"}
  • + +
  • {"group":"aiml.pachyderm.com","kind":"PachydermExport","version":"v1beta1"}
  • + +
+
+
    + +
  • cockroachdb-certified
  • + +
  • cockroachdb-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"crdb.cockroachlabs.com","kind":"CrdbCluster","version":"v1alpha1"}
  • + +
+
+
    + +
  • hazelcast-enterprise-certified
  • + +
  • hazelcast-enterprise-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"hazelcast.com","kind":"HazelcastEnterprise","version":"v1alpha1"}
  • + +
+
+
    + +
  • aikit-operator
  • + +
  • aikit-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"aikit.intel","kind":"AIKitContainer","version":"v1alpha1"}
  • + +
+
+
    + +
  • crunchy-postgres-operator
  • + +
  • postgresql
  • + +
  • crunchy-postgres-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"postgres-operator.crunchydata.com","kind":"PostgresCluster","version":"v1beta1"}
  • + +
+
+
    + +
  • kiali
  • + +
  • kiali-ossm
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"kiali.io","kind":"Kiali","version":"v1alpha1"}
  • + +
  • {"group":"monitoring.kiali.io","kind":"MonitoringDashboard","version":"v1alpha1"}
  • + +
+
+
    + +
  • kong-offline-operator
  • + +
  • kong-offline-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"charts.konghq.com","kind":"Kong","version":"v1alpha1"}
  • + +
+
+
    + +
  • hawtio-operator
  • + +
  • fuse-console
  • + +
+
+
    + +
  • RedHat Community Index
  • + +
  • RedHat Index
  • + +
+
+
    + +
  • {"group":"hawt.io","kind":"Hawtio","version":"v1alpha1"}
  • + +
+
+
    + +
  • anzo-operator
  • + +
  • anzo-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"anzo.cambridgesemantics.com","kind":"Anzo","version":"v1"}
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator
  • + +
  • citrix-cpx-with-ingress-controller-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"citrix.com","kind":"CitrixCpxWithIngressController","version":"v1alpha1"}
  • + +
+
+
    + +
  • federatorai-certified
  • + +
  • federatorai-certified-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"federatorai.containers.ai","kind":"AlamedaService","version":"v1alpha1"}
  • + +
+
+
    + +
  • timemachine-operator
  • + +
  • timemachine-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"tm.solution-soft.com","kind":"TimeMachine","version":"v1alpha1"}
  • + +
+
+
    + +
  • seldon-operator-certified
  • + +
  • seldon-operator
  • + +
+
+
    + +
  • Certified Index
  • + +
  • RedHat Community Index
  • + +
+
+
    + +
  • {"group":"machinelearning.seldon.io","kind":"SeldonDeployment","version":"v1"}
  • + +
+
+
    + +
  • vfunction-server-operator
  • + +
  • vfunction-server-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"vfunction.com","kind":"VfunctionServer","version":"v1"}
  • + +
+
+
    + +
  • can-operator
  • + +
  • can-operator-rhmp
  • + +
+
+
    + +
  • Certified Index
  • + +
  • Marketplace Index
  • + +
+
+
    + +
  • {"group":"can.avanseus.com","kind":"CAN","version":"v1alpha1"}
  • + +
+
+
+
+ + + diff --git a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2022-01-13.html b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.22_quay.io_operatorhubio_catalog_latest_2022-01-25.html similarity index 95% rename from testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2022-01-13.html rename to testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.22_quay.io_operatorhubio_catalog_latest_2022-01-25.html index d9791af3..6d0387e1 100644 --- a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2022-01-13.html +++ b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.22_quay.io_operatorhubio_catalog_latest_2022-01-25.html @@ -62,13 +62,13 @@ + + + + + + + + +
+ +

Removed API(s) in 1.25/OCP 4.12 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
opsmx-spinnaker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • opsmx-spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hawkbit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hawkbit-operator.v0.1.1 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.2 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.3 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.4 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.5 - (label=v4.6-v4.8,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql +
    + +
+
+
    + +
  • original_41
  • + +
  • stable
  • + +
  • original_43
  • + +
  • original_42
  • + +
  • original_40
  • + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v4.0.1 - (label=,max=not set,channels=[original_40],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.1.0 - (label=,max=not set,channels=[original_41],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.0 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.1 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.2 - (label=,max=not set,channels=[original_43 stable original_42],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.3.2 - (label=,max=not set,channels=[original_43 stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.6.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.7.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v5.0.2 - (label=v4.6-v4.9,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6-v4.9,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.4 - (label=v4.6-v4.9,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aws-auth-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • aws-auth-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
argocd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • argocd-operator.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.14 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.15 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sap-btp-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sap-btp-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sap-btp-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sap-btp-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-quantum-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-driver-operator.v1.0.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.1.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.2.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.3.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.4.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.4.1 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-rds-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-rds-controller.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-rds-controller.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemod +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
esindex-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • esindex-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-sfn-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-sfn-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-sfn-controller.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-sfn-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ext-postgres-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ext-postgres-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ext-postgres-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ext-postgres-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
storageos +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • storageosoperator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.5.0-beta.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-applicationautoscaling-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-applicationautoscaling-controller.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-applicationautoscaling-controller.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
falcon-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • falcon-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • falcon-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zoperator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
iot-simulator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • iot-simulator.0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wso2am-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • wso2am-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wso2am-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wso2am-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-xtradb-cluster-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-xtradb-cluster-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.10.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
nfs-provisioner-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nfs-provisioner-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-opensearchservice-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-opensearchservice-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-opensearchservice-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • runtime-component-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wildfly +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • wildfly-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.5.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crossplane +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • crossplane.v0.11.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kogito-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • 1.x
  • + +
+
+
    + +
+
+
    + +
  • kogito-operator.v0.11.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.12.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.13.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.14.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.15.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.16.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.17.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.0.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.1.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.11.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.11.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.12.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.13.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.14.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.15.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.16.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.2.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.3.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.4.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.5.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.6.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.7.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.8.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.9.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.9.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
eunomia +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • eunomia.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-operator.v0.15.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.15.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.15.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.18.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.18.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.19.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.22.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.23.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.24.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.25.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.25.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.26.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.26.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-ecr-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-ecr-controller.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.14 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
argocd-operator-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • argocd-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpa-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nexus-operator-m88i +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nexus-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rook-ceph +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • rook-ceph.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • rook-ceph.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • rook-ceph.v1.1.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-serving-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-serving-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-spectrum-scale-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kube-arangodb +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.0.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.0.6 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.6.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.6.1 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-dynamodb-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-dynamodb-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-dynamodb-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-dynamodb-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
chaosblade-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vault +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-kms-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-kms-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-kms-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-kms-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
snyk-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • snyk-operator.v1.30.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.32.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.33.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.36.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.40.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.41.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.50.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.54.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.55.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.59.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.64.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.66.16 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.66.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.68.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.68.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.70.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.70.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.72.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.73.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.80.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
halkyon +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • halkyon.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • halkyon.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • halkyon.v0.1.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aiven-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aiven-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aiven-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tektoncd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tektoncd-operator.v0.15.2-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.23.0-2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.24.1-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.49.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
apicurio-registry +
    + +
+
+
    + +
  • alpha
  • + +
  • 2.x
  • + +
+
+
    + +
+
+
    + +
  • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
ack-elasticache-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-elasticache-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-elasticache-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-elasticache-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
falco +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • falco-operator.v0.5.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • falco-operator.v0.7.6 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
external-secrets-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • external-secrets-operator.v0.3.10 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.11 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.9 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
awss3-operator-registry +
    + +
+
+
    + +
  • original
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • awss3operator.v1.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • awss3operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ripsaw +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeturbo +
    + +
+
+
    + +
  • v8.4.0
  • + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.2.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.3 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.0 - (label=,max=not set,channels=[v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
microcks +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • microcks-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
noobaa-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • noobaa-operator.v2.0.10 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.7 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.8 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.9 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.1.0 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.1.1 - (label=,max=not set,channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v5.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v5.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infinispan +
    + +
+
+
    + +
  • 1.1.x
  • + +
  • 2.0.x
  • + +
  • 2.1.x
  • + +
  • dev-preview
  • + +
  • preview
  • + +
  • 2.2.x
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.6 - (label=,max=not set,channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.0 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.1 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.2 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.5 - (label=,max=4.8,channels=[2.1.x 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.6 - (label=,max=4.8,channels=[2.1.x],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.7 - (label=,max=4.8,channels=[2.1.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.0 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.1 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.2 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.3 - (label=,max=not set,channels=[2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elastic-cloud-eck +
    + +
+
+
    + +
  • stable
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • elastic-cloud-eck.v0.9.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.0-beta1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.2 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.2.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.2.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.3.0 - (label=,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.9.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.11.1 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • seldon-operator.v1.7.0 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
+
mongodb-enterprise +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • mongodb-enterprise.v0.3.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.13.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.14.0 - (label==v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
appsody-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • appsody-operator.v0.1.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
community-kubevirt-hyperconverged +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.1 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.2 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.3 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.5.0 - (label=v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
spark-gcp +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
instana-agent +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • instana-agent-operator.v0.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.2.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.2.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.10 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.9 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.5 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elastic-phenix-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
druid-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pulp-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.6.1 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.7.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchdb-operator +
    + +
+
+
    + +
  • v1.0
  • + +
  • v1.1
  • + +
  • v1.2
  • + +
  • v1.3
  • + +
  • v1.4
  • + +
  • v2.2
  • + +
+
+
    + +
+
+
    + +
  • couchdb-operator.v1.0.14 - (label=,max=not set,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.1.0 - (label=,max=not set,channels=[v1.1],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.2.1 - (label=,max=not set,channels=[v1.2],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.3.1 - (label=,max=not set,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[v1.4],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v2.2.0 - (label=,max=not set,channels=[v2.2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
starboard-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • starboard-operator.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.11.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.12.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.14.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
logging-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • logging-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • logging-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ks-releaser-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ks-releaser-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sealed-secrets-operator-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sealed-secrets-operator-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sealed-secrets-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pmem-csi-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v0.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.8.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.9.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.9.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v1.0.1 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mysql +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubestone +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eclipse-che +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.30.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.30.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.33.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pystol +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datadog-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datadog-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.0 - (label=,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.1 - (label=,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.2 - (label=,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cos-bucket-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cos-bucket-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
camel-k +
    + +
+
+
    + +
  • stable
  • + +
  • stable-1.7
  • + +
  • stable-1.4
  • + +
  • stable-1.5
  • + +
  • stable-1.6
  • + +
  • stable-1.3
  • + +
+
+
    + +
+
+
    + +
  • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.6.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.6.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.7.0 - (label=,max=not set,channels=[stable stable-1.7],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
appranix +
    + +
+
+
    + +
  • deprecated
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ax-cps-operator.v1.0.0 - (label=,max=not set,channels=[deprecated stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ax-cps-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cluster-impairment-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-impairment-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
verticadb-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • verticadb-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • verticadb-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-s3-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-s3-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
keycloak-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v11.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v12.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v12.0.3 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v13.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v13.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v14.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.1.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.1.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v16.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v16.1.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v7.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v8.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v8.0.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v9.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v9.0.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
varnish-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibmcloud-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibmcloud-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.10 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.11 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.6 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.7 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.8 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.9 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.10 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.11 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.12 - (label=,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datatrucker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datatrucker-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datatrucker-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datatrucker-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ham-deploy +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ham-deploy.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
clever-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cleveroperator.v0.3.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cass-operator-community +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cass-operator.v1.9.0 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
event-streams-topic +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • event-streams-topic.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • event-streams-topic.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
project-quay +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dnext-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dnext.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
deployment-validation-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • deployment-validation-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pcc-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pcc-operator.v0.0.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.1.0 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.1.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tagger +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tagger.v2.1.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
steerd-presto-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
strimzi-kafka-operator +
    + +
+
+
    + +
  • strimzi-0.19.x
  • + +
  • strimzi-0.20.x
  • + +
  • strimzi-0.25.x
  • + +
  • strimzi-0.26.x
  • + +
  • stable
  • + +
  • strimzi-0.27.x
  • + +
  • strimzi-0.21.x
  • + +
  • strimzi-0.23.x
  • + +
  • strimzi-0.24.x
  • + +
  • strimzi-0.22.x
  • + +
+
+
    + +
+
+
    + +
  • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.26.0 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.26.1 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.27.0 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.27.1 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
victoriametrics-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • victoriametrics-operator.v0.10.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.11.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.12.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.12.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.13.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.14.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.15.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.16.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.17.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.17.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.19.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.19.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.20.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.21.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.22.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.6.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.7.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
t8c +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • t8c-operator.v42.0.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.1.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.16.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.17.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.22.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
siddhi-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-mq-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-mq-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-mq-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-mq-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
spinnaker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
prometheus +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • prometheusoperator.0.14.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.15.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.22.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.27.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.32.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.37.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-enterprise +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-eks-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-eks-controller.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-eks-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-eks-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
intel-device-plugins-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • intel-device-plugins-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgres-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • postgres-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgres-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgres-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
istio-workspace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-operator.v1.4.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-operator.v1.7.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wavefront +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mariadb-operator-app +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mariadb-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cockroachdb +
    + +
+
+
    + +
  • stable
  • + +
  • stable-5.x
  • + +
  • stable-3.x
  • + +
+
+
    + +
+
+
    + +
  • cockroachdb.v2.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v2.1.11 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v3.0.7 - (label=,max=not set,channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ditto-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ditto-operator.v0.1.0 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.1.1 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.2.0 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.3.1 - (label=v4.6-v4.9,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.4.0 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
oneagent +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-monitoring.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.10.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.4.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.5.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.5.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.7.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
poison-pill-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.2.7 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.2.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-jet-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-jet-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
opentelemetry-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • opentelemetry-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.27.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.36.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.37.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.38.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.39.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.40.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.41.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.42.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
splunk +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
litmuschaos +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • chaosoperator.v0.1.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • chaosoperator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.9.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
appdynamics-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • appdynamics-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appdynamics-operator.v0.6.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kong +
    + +
+
+
    + +
  • alpha
  • + +
  • alpha.1
  • + +
+
+
    + +
+
+
    + +
  • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.9.0 - (label=,max=not set,channels=[alpha.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
yugabyte-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rocketmq-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tackle-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • anchore-engine-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ovms-operator.v0.1.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ovms-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
traefikee-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • traefikee-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v0.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubernetes-imagepuller-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubernetes-imagepuller-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-application-gateway-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-application-gateway-operator.v0.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
node-healthcheck-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ember-csi-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • ember-csi-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ember-csi-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ember-csi-operator.v0.9.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
enmasse +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • enmasse.0.28.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.28.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.29.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.30.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.30.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.32.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-tomcat-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-tomcat-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
qserv-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • qserv-operator.v2021.6.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.6.3-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.8.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.8.1-rc3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.9.1-rc1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshift-qiskit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openshift-qiskit-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openshift-qiskit-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hedvig-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hedvig-operator.v1.0.0-beta - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hedvig-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
yaks +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • yaks-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-postgresql-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-postgresql-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
enc-key-sync +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kube-green +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kube-green.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
flagsmith +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • flagsmith-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flagsmith-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nuxeo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
submariner +
    + +
+
+
    + +
  • alpha
  • + +
  • alpha-0.10
  • + +
  • alpha-0.11
  • + +
+
+
    + +
+
+
    + +
  • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.11.0 - (label=,max=not set,channels=[alpha-0.11],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
apimatic-kubernetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
application-services-metering-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • application-services-metering-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • application-services-metering-operator.v0.6.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
planetscale +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • planetscale-operator.v0.1.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • planetscale-operator.v0.1.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
radanalytics-spark +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sparkoperator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-ec2-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-ec2-controller.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ec2-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ec2-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
composable-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • composable-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cert-manager +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.5.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.6.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
carbonetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • carbonetes-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubefed-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rook-edgefs +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kom-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
virt-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
robin-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
skydive-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • skydive-operator.v0.0.49 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • skydive-operator.v0.0.50 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tidb-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tidb-operator.1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tidb-operator.1.0.0-beta1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tidb-operator.v1.1.6 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
prisma-cloud-compute-console-operator +
    + +
+
+
    + +
  • latest
  • + +
+
+
    + +
+
+
    + +
  • prisma-cloud-compute-console-operator.v1.0.0 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mcad-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-eventing-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-eventing-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
integrity-shield-operator +
    + +
+
+
    + +
  • alpha-0.3.1
  • + +
  • alpha
  • + +
  • alpha-0.3.0
  • + +
+
+
    + +
+
+
    + +
  • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.3.0 - (label=,max=not set,channels=[alpha-0.3.1 alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.3.1 - (label=,max=not set,channels=[alpha-0.3.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-operator-kubernetes +
    + +
+
+
    + +
  • stable
  • + +
  • unstable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-operator-kubernetes.v0.3.1 - (label=,max=not set,channels=[stable unstable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mattermost-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
akka-cluster-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • akka-cluster-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vault-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • vault-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • vault-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.1.20 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.301 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.551 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.552 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.553 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.556 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.557 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.755 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.3.958 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeflow +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubeflow.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeflow.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeflow.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rqlite-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • rqlite-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dell-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • dell-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.5.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.6.0 - (label=,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
topolvm-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • topolvm-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-server-mongodb-operator +
    + +
+
+
    + +
  • stable
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • percona-server-mongodb-operator.v1.0.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.1.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.10.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.2.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.3.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.9.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-lambda-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-lambda-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nsm-operator-registry +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cryostat-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cryostat-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
istio +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
api-operator +
    + +
+
+
    + +
  • stable
  • + +
  • 2.x-stable
  • + +
+
+
    + +
+
+
    + +
  • api-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v2.0.0 - (label=,max=not set,channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemq-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubemq-operator.v0.3.2 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • kubemq-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubemq-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
apicast-community-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • apicast-community-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.1.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.2.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.4.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
synapse-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • synapse-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
clickhouse +
    + +
+
+
    + +
  • latest
  • + +
+
+
    + +
+
+
    + +
  • clickhouse-operator.v0.10.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.12.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.13.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.13.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.14.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.15.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.16.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.16.1 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.5.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.6.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.7.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.8.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.1 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.2 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.3 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.4 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.6 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.7 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.8 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.9 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
trivy-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • trivy-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • trivy-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • trivy-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • trivy-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
project-quay-container-security-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
lightbend-console-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
myvirtualdirectory +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • myvirtualdirectory.1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
metallb-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
open-liberty +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • open-liberty-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
service-binding-operator +
    + +
+
+
    + +
  • beta
  • + +
  • candidate
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • service-binding-operator.v0.10.0 - (label=,max=not set,channels=[beta candidate],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • service-binding-operator.v0.11.0 - (label=,max=not set,channels=[candidate],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • service-binding-operator.v0.4.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.5.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.6.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.7.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
prometheus-exporter-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • prometheus-exporter-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheus-exporter-operator.v0.2.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
beegfs-csi-driver-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • beegfs-csi-driver-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • beegfs-csi-driver-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cluster-manager +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cluster-manager.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
universal-crossplane +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • universal-crossplane.1.2.1-up.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.1-up.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.2-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.3.1-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.3.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.4.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.5.1-up.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubernetes-nmstate-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubernetes-nmstate-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-nmstate-operator.v0.37.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-nmstate-operator.v0.47.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-operator +
    + +
+
+
    + +
  • stable
  • + +
  • preview
  • + +
+
+
    + +
+
+
    + +
  • redis-operator.v0.0.1 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.2.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.3.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.4.0 - (label=,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.9.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
banzaicloud-kafka-operator +
    + +
+
+
    + +
  • beta
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • banzaicloud-kafka-operator.0.3.1 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • banzaicloud-kafka-operator.0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tf-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tf-operator.latest - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • tf-operator.v0.0.1-2011 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
machine-deletion-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xrootd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jenkins-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • jenkins-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jenkins-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
azure-service-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • azure-service-operator.v0.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.24492 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.28631 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
lib-bucket-provisioner +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hive-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • ocm-2.3
  • + +
  • ocm-2.4
  • + +
  • ocm-2.2
  • + +
  • ocm-2.1
  • + +
+
+
    + +
+
+
    + +
  • hive-operator.v1.0.10 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.11 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.12 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.13 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.14 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.16 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.17 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.18 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.19 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.9 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.0 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.1 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.10 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.11 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.12 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.13 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.14 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.16 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.2 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.3 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.4 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.5 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.9 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.9-1.1.8.1 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v1.1.9-1.1.8.2 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v1.2.3179-0756b70e6 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3222-1411793 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3254-512b7f4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3274-a27a4f7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3299-f0cc1ba - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3310-bc1417a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3329-16c6e0f - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3337-d668960 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3359-8f0773c - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3375-1f0f3eb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3391-55f6363 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3427-e50103a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3431-6ba92bb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3457-b212e8a - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v2.3.3033-c1c7735 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3180-7299056 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3189-026033b - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3192-fae0111 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3194-f82b7d8 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3197-6c9c8e4 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3199-cce4cb9 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3201-8c50440 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3203-672cfe7 - (label=,max=not set,channels=[ocm-2.4],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
etcd +
    + +
+
+
    + +
  • singlenamespace-alpha
  • + +
  • clusterwide-alpha
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • etcdoperator-community.v0.6.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • etcdoperator.v0.9.0 - (label=,max=not set,channels=[singlenamespace-alpha clusterwide-alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.2 - (label=,max=not set,channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.2-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • etcdoperator.v0.9.4 - (label=,max=not set,channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.4-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
mongodb-atlas-kubernetes +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
alvearie-imaging-ingestion +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • imaging-ingestion-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
syndesis +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • syndesis-operator.1.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
multicluster-operators-subscription +
    + +
+
+
    + +
  • release-2.3
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • multicluster-operators-subscription.v0.1.2 - (label=,max=not set,channels=[alpha release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator-community +
    + +
+
+
    + +
  • maintenance-1.5
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.5.1 - (label=,max=not set,channels=[maintenance-1.5],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.7.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.8.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kiali +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kiali-operator.v0.18.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.1.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.10.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.11.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.13.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.15.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.19.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.22.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.24.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.25.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.26.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.27.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.28.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.29.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.3.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.30.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.31.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.32.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.33.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.34.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.35.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.36.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.37.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.38.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.39.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.4.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.40.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.41.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.42.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.43.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.44.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.6.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.7.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.9.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
cassandra-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
klusterlet +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • klusterlet.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sematext +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sematext-operator.v1.0.33 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • sematext-operator.v1.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sematext-operator.v1.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
grafana-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • v4
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • grafana-operator.v1.3.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v2.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.3 - (label=,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v4.0.0 - (label=,max=4.8,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.0.1 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.0.2 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.1.0 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.1.1 - (label=,max=not set,channels=[v4],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
snapscheduler +
    + +
+
+
    + +
  • stable
  • + +
  • candidate
  • + +
+
+
    + +
+
+
    + +
  • snapscheduler.v1.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snapscheduler.v2.0.0 - (label=,max=not set,channels=[candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snapscheduler.v2.1.0 - (label=,max=not set,channels=[candidate stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-access-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-access-operator.v21.10.0 - (label=v4.6-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibmcloud-iam-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-jet-enterprise-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-jet-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nfd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nfd-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8gb +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • k8gb.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openebs +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openebsoperator.v1.0.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.3.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.4.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.5.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.10.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.11.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.12.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v3.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
silicom-sts-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • silicom-sts-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
shipwright-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • shipwright-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • shipwright-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-ezmeral-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-ezmeral-csi-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-ezmeral-csi-operator.v1.0.4 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jaeger +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jaeger-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.11.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.12.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.13.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.13.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.18.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.19.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.21.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.25.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.26.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.28.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.29.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
metering-upstream +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql-operator-dev4devs-com +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-apigatewayv2-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-apigatewayv2-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-apigatewayv2-controller.v0.0.11 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-apigatewayv2-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
sigstore-helm-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
flux +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.18.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.19.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.20.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.21.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.21.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.23.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.24.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.25.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.25.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloud-native-postgresql +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.10.0 - (label=,max=4.9,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.11.0 - (label=v4.6-v4.9,max=4.9,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.12.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.7.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.7.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.8.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.9.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.9.2 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
aqua +
    + +
+
+
    + +
  • alpha
  • + +
  • 5.3.0
  • + +
  • 6.0.0
  • + +
  • 6.5.0
  • + +
  • 6.2.0
  • + +
+
+
    + +
+
+
    + +
  • aqua-operator.v0.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v0.0.2 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.0 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v5.3.0 - (label=,max=not set,channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.0.0 - (label=,max=not set,channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.2.0 - (label=,max=not set,channels=[6.2.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.2.1 - (label=,max=not set,channels=[6.2.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.5.0 - (label=,max=not set,channels=[6.5.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aqua-operator.v6.5.1 - (label=,max=not set,channels=[6.5.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
atlasmap-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • atlasmap-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-essentials +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
keda +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • keda.v1.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
credstash-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
enmasse +
    + +
  • batch
  • + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • enmasse.0.28.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.28.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.29.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.30.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.30.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.31.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.31.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.31.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
  • enmasse.0.32.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
+
falcon-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • falcon-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • falcon-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
postgresql +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • postgresoperator.v4.0.1 - (label=,max=not set,channels=[original_40],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.1.0 - (label=,max=not set,channels=[original_41],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.2.0 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.2.1 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.2.2 - (label=,max=not set,channels=[original_43 stable original_42],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.6.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v4.7.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
credstash-operator +
    + +
  • events
  • + +
+
+
    + +
  • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
joget-tomcat-operator +
    + +
  • events
  • + +
+
+
    + +
  • joget-tomcat-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
knative-serving-operator +
    + +
  • events
  • + +
+
+
    + +
  • knative-serving-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
mongodb-atlas-kubernetes +
    + +
  • events
  • + +
+
+
    + +
  • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
pcc-operator +
    + +
  • events
  • + +
+
+
    + +
  • pcc-operator.v0.0.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pcc-operator.v0.1.0 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pcc-operator.v0.1.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pcc-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
prometheus-exporter-operator +
    + +
  • events
  • + +
+
+
    + +
  • prometheus-exporter-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • prometheus-exporter-operator.v0.2.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
beegfs-csi-driver-operator +
    + +
  • events
  • + +
+
+
    + +
  • beegfs-csi-driver-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • beegfs-csi-driver-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
appdynamics-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • appdynamics-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • appdynamics-operator.v0.6.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
halkyon +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • halkyon.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • halkyon.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • halkyon.v0.1.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
jenkins-operator +
    + +
  • events
  • + +
+
+
    + +
  • jenkins-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • jenkins-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
prisma-cloud-compute-console-operator +
    + +
  • events
  • + +
+
+
    + +
  • prisma-cloud-compute-console-operator.v1.0.0 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
qserv-operator +
    + +
  • events
  • + +
+
+
    + +
  • qserv-operator.v2021.6.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • qserv-operator.v2021.6.3-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • qserv-operator.v2021.8.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • qserv-operator.v2021.8.1-rc3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • qserv-operator.v2021.9.1-rc1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
t8c +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • t8c-operator.v42.0.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v42.1.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v42.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v42.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v42.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v42.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v7.16.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v7.17.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v7.22.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • t8c-operator.v8.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
camel-k +
    + +
  • policy
  • + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.6.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.6.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
  • camel-k-operator.v1.7.0 - (label=,max=not set,channels=[stable stable-1.7],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch" "events"])
  • + +
+
cockroachdb +
    + +
  • batch
  • + +
  • policy
  • + +
  • events
  • + +
+
+
    + +
  • cockroachdb.v2.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • cockroachdb.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy" "events"])
  • + +
  • cockroachdb.v2.1.11 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy" "events"])
  • + +
  • cockroachdb.v3.0.7 - (label=,max=not set,channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy" "events"])
  • + +
  • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy" "events"])
  • + +
  • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy" "events"])
  • + +
+
knative-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
  • policy
  • + +
  • HorizontalPodAutoscaler
  • + +
+
+
    + +
  • knative-operator.v0.15.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.15.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.15.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.17.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.18.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.18.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.19.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.22.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.23.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.24.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.25.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.25.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.26.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.26.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy" "HorizontalPodAutoscaler"])
  • + +
+
oneagent +
    + +
  • policy
  • + +
  • events
  • + +
+
+
    + +
  • dynatrace-monitoring.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.10.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.4.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.5.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.5.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.7.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy"])
  • + +
  • dynatrace-monitoring.v0.8.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.9.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
  • dynatrace-monitoring.v0.9.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "events"])
  • + +
+
openebs +
    + +
  • events
  • + +
+
+
    + +
  • openebsoperator.v1.0.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v1.3.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v1.4.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v1.5.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v2.10.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v2.11.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v2.12.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openebsoperator.v3.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
submariner +
    + +
  • events
  • + +
  • discovery.k8s.io
  • + +
+
+
    + +
  • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.11.0 - (label=,max=not set,channels=[alpha-0.11],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "discovery.k8s.io"])
  • + +
  • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
external-secrets-operator +
    + +
  • events
  • + +
+
+
    + +
  • external-secrets-operator.v0.3.10 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • external-secrets-operator.v0.3.11 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • external-secrets-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • external-secrets-operator.v0.3.9 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
pmem-csi-operator +
    + +
  • events
  • + +
+
+
    + +
  • pmem-csi-operator.v0.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pmem-csi-operator.v0.8.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pmem-csi-operator.v0.9.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pmem-csi-operator.v0.9.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pmem-csi-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pmem-csi-operator.v1.0.1 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
seldon-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • policy
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "policy"])
  • + +
+
silicom-sts-operator +
    + +
  • events
  • + +
+
+
    + +
  • silicom-sts-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
azure-service-operator +
    + +
  • events
  • + +
+
+
    + +
  • azure-service-operator.v0.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • azure-service-operator.v1.0.24492 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • azure-service-operator.v1.0.28631 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kom-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
openshift-qiskit-operator +
    + +
  • events
  • + +
+
+
    + +
  • openshift-qiskit-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • openshift-qiskit-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
project-quay-container-security-operator +
    + +
  • events
  • + +
+
+
    + +
  • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
sigstore-helm-operator +
    + +
  • events
  • + +
+
+
    + +
  • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cluster-manager +
    + +
  • events
  • + +
  • events.k8s.io
  • + +
+
+
    + +
  • cluster-manager.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • cluster-manager.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • cluster-manager.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • cluster-manager.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • cluster-manager.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
+
nexus-operator-m88i +
    + +
  • events
  • + +
+
+
    + +
  • nexus-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nexus-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nexus-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nexus-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nexus-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nexus-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
postgres-operator +
    + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • postgres-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch"])
  • + +
  • postgres-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch"])
  • + +
  • postgres-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "batch"])
  • + +
+
traefikee-operator +
    + +
  • events
  • + +
+
+
    + +
  • traefikee-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • traefikee-operator.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • traefikee-operator.v0.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • traefikee-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • traefikee-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
chaosblade-operator +
    + +
  • events
  • + +
+
+
    + +
  • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
elastic-phenix-operator +
    + +
  • events
  • + +
+
+
    + +
  • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ibm-quantum-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
apimatic-kubernetes-operator +
    + +
  • events
  • + +
+
+
    + +
  • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
aws-auth-operator +
    + +
  • events
  • + +
+
+
    + +
  • aws-auth-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ember-csi-operator +
    + +
  • events
  • + +
+
+
    + +
  • ember-csi-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ember-csi-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ember-csi-operator.v0.9.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hedvig-operator +
    + +
  • events
  • + +
+
+
    + +
  • hedvig-operator.v1.0.0-beta - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hedvig-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
flux +
    + +
  • events
  • + +
+
+
    + +
  • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.16.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.17.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.18.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.19.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.20.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.21.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.21.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.23.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.24.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.25.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flux.v0.25.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kubernetes-imagepuller-operator +
    + +
  • events
  • + +
+
+
    + +
  • kubernetes-imagepuller-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubernetes-imagepuller-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
mysql +
    + +
  • batch
  • + +
+
+
    + +
  • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch"])
  • + +
+
siddhi-operator +
    + +
  • events
  • + +
+
+
    + +
  • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
datatrucker-operator +
    + +
  • events
  • + +
+
+
    + +
  • datatrucker-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • datatrucker-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • datatrucker-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
mcad-operator +
    + +
  • events
  • + +
+
+
    + +
  • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
argocd-operator-helm +
    + +
  • events
  • + +
+
+
    + +
  • argocd-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • argocd-operator-helm.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • argocd-operator-helm.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • argocd-operator-helm.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • argocd-operator-helm.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • argocd-operator-helm.v0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cryostat-operator +
    + +
  • events
  • + +
+
+
    + +
  • cryostat-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kubernetes-nmstate-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • kubernetes-nmstate-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • kubernetes-nmstate-operator.v0.37.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • kubernetes-nmstate-operator.v0.47.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
metallb-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • discovery.k8s.io
  • + +
+
+
    + +
  • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "discovery.k8s.io"])
  • + +
+
apicurio-registry +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • apicurio-registry.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
awss3-operator-registry +
    + +
  • events
  • + +
+
+
    + +
  • awss3operator.v1.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • awss3operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
druid-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • autoscaling
  • + +
+
+
    + +
  • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "autoscaling"])
  • + +
+
hazelcast-operator +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kubemq-operator +
    + +
  • events
  • + +
+
+
    + +
  • kubemq-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubemq-operator.v0.3.2 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • kubemq-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kubemq-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
opsmx-spinnaker-operator +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • opsmx-spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • opsmx-spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • opsmx-spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • opsmx-spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
verticadb-operator +
    + +
  • events
  • + +
+
+
    + +
  • verticadb-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • verticadb-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
federatorai +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • federatorai.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • federatorai.v4.1.20 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.301 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.551 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.552 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.553 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.556 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.557 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.2.755 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
  • federatorai.v4.3.958 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch" "policy"])
  • + +
+
integrity-shield-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • integrity-shield-operator.v0.3.0 - (label=,max=not set,channels=[alpha-0.3.1 alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • integrity-shield-operator.v0.3.1 - (label=,max=not set,channels=[alpha-0.3.1],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
istio +
    + +
  • policy
  • + +
  • autoscaling
  • + +
+
+
    + +
  • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["policy" "autoscaling"])
  • + +
+
pystol +
    + +
  • events
  • + +
+
+
    + +
  • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kong +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • kong.v0.9.0 - (label=,max=not set,channels=[alpha.1],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
litmuschaos +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • chaosoperator.v0.1.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • chaosoperator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • chaosoperator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • chaosoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • chaosoperator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • chaosoperator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • chaosoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • chaosoperator.v1.9.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
aiven-operator +
    + +
  • events
  • + +
+
+
    + +
  • aiven-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aiven-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
minio-operator +
    + +
  • events
  • + +
+
+
    + +
  • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
node-healthcheck-operator +
    + +
  • events
  • + +
+
+
    + +
  • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • node-healthcheck-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • node-healthcheck-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • node-healthcheck-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
poison-pill-operator +
    + +
  • events
  • + +
+
+
    + +
  • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • poison-pill.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
vault +
    + +
  • events
  • + +
+
+
    + +
  • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
datadog-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
  • autoscaling
  • + +
+
+
    + +
  • datadog-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • datadog-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • datadog-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • datadog-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • datadog-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.7.0 - (label=,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.7.1 - (label=,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
  • datadog-operator.v0.7.2 - (label=,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch" "autoscaling"])
  • + +
+
neuvector-operator +
    + +
  • CronJob
  • + +
+
+
    + +
  • neuvector-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.2.7 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.2.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
+
synapse-helm +
    + +
  • events
  • + +
+
+
    + +
  • synapse-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
virt-gateway-operator +
    + +
  • events
  • + +
+
+
    + +
  • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hpe-csi-operator +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • hpe-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
ripsaw +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
yaks +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • yaks-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • yaks-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
cloud-native-postgresql +
    + +
  • events
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.10.0 - (label=,max=4.9,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.7.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.7.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.8.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.9.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • cloud-native-postgresql.v1.9.2 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
+
kube-green +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • kube-green.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
wso2am-operator +
    + +
  • events
  • + +
+
+
    + +
  • wso2am-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wso2am-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wso2am-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ibm-application-gateway-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibm-application-gateway-operator.v0.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v21.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v21.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v21.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v21.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-application-gateway-operator.v21.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
rqlite-operator +
    + +
  • events
  • + +
+
+
    + +
  • rqlite-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hazelcast-enterprise-operator +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ibmcloud-iam-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
metering-upstream +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
shipwright-operator +
    + +
  • events
  • + +
+
+
    + +
  • shipwright-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • shipwright-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
yugabyte-operator +
    + +
  • events
  • + +
+
+
    + +
  • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
appsody-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • appsody-operator.v0.1.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.2.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.2.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.2.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • appsody-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
kubeturbo +
    + +
  • events
  • + +
  • PodDisruptionBudget
  • + +
  • policy
  • + +
+
+
    + +
  • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.2.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.3.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.3.3 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
  • kubeturbo-operator.v8.4.0 - (label=,max=not set,channels=[v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
+
microcks +
    + +
  • events
  • + +
+
+
    + +
  • microcks-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v0.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • microcks-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
percona-xtradb-cluster-operator +
    + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • percona-xtradb-cluster-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.10.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-xtradb-cluster-operator.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
+
redis-operator +
    + +
  • events
  • + +
+
+
    + +
  • redis-operator.v0.0.1 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • redis-operator.v0.2.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
rocketmq-operator +
    + +
  • events
  • + +
+
+
    + +
  • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
project-quay +
    + +
  • events
  • + +
+
+
    + +
  • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
robin-operator +
    + +
  • events
  • + +
+
+
    + +
  • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
wildfly +
    + +
  • events
  • + +
+
+
    + +
  • wildfly-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • wildfly-operator.v0.5.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
clickhouse +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • clickhouse-operator.v0.10.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.12.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.13.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.13.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.14.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.15.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.16.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.16.1 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.5.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.6.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.7.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.8.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.1 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.2 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.3 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.4 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.6 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.7 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.8 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • clickhouse-operator.v0.9.9 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
ibm-block-csi-operator-community +
    + +
  • events
  • + +
+
+
    + +
  • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-block-csi-operator.v1.5.1 - (label=,max=not set,channels=[maintenance-1.5],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-block-csi-operator.v1.7.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
jaeger +
    + +
  • events
  • + +
  • batch
  • + +
  • autoscaling
  • + +
+
+
    + +
  • jaeger-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.11.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • jaeger-operator.v1.12.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.13.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.13.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.18.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.19.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.21.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.25.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.26.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.28.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • jaeger-operator.v1.29.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
+
percona-server-mongodb-operator +
    + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • percona-server-mongodb-operator.v1.0.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.1.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.10.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.2.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.3.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
  • percona-server-mongodb-operator.v1.9.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
+
pulp-operator +
    + +
  • events
  • + +
+
+
    + +
  • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pulp-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pulp-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • pulp-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
redis-enterprise +
    + +
  • events
  • + +
+
+
    + +
  • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hazelcast-jet-enterprise-operator +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-jet-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-enterprise-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
nfd-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • nfd-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
planetscale +
    + +
  • events
  • + +
+
+
    + +
  • planetscale-operator.v0.1.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • planetscale-operator.v0.1.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
aqua +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • aqua-operator.v0.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v0.0.2 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v1.0.0 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v1.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v5.3.0 - (label=,max=not set,channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v6.0.0 - (label=,max=not set,channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v6.2.0 - (label=,max=not set,channels=[6.2.0],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v6.2.1 - (label=,max=not set,channels=[6.2.0],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v6.5.0 - (label=,max=not set,channels=[6.5.0],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • aqua-operator.v6.5.1 - (label=,max=not set,channels=[6.5.0],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
dell-csi-operator +
    + +
  • events
  • + +
+
+
    + +
  • dell-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.5.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • dell-csi-operator.v1.6.0 - (label=,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
noobaa-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • noobaa-operator.v2.0.10 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.0.7 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.0.8 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.0.9 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.1.0 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.1.1 - (label=,max=not set,channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v5.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • noobaa-operator.v5.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
+
postgresql-operator-dev4devs-com +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
storageos +
    + +
  • events
  • + +
  • policy
  • + +
  • events.k8s.io
  • + +
+
+
    + +
  • storageosoperator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.3.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.3.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
  • storageosoperator.v2.5.0-beta.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "events.k8s.io"])
  • + +
+
dnext-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • dnext.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
hazelcast-jet-operator +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-jet-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hazelcast-jet-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
starboard-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • starboard-operator.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.10.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.11.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.12.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.13.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.13.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.14.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.9.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • starboard-operator.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
cass-operator-community +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • cass-operator.v1.9.0 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
skydive-operator +
    + +
  • events
  • + +
+
+
    + +
  • skydive-operator.v0.0.49 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • skydive-operator.v0.0.50 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
steerd-presto-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
atlasmap-operator +
    + +
  • events
  • + +
+
+
    + +
  • atlasmap-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • atlasmap-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • atlasmap-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • atlasmap-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • atlasmap-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
crossplane +
    + +
  • events
  • + +
+
+
    + +
  • crossplane.v0.11.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
gitlab-operator-kubernetes +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • gitlab-operator-kubernetes.v0.3.1 - (label=,max=not set,channels=[stable unstable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
+
keycloak-operator +
    + +
  • events
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • keycloak-operator.v14.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v15.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v15.0.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v15.1.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v15.1.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v16.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • keycloak-operator.v16.1.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
+
knative-eventing-operator +
    + +
  • events
  • + +
+
+
    + +
  • knative-eventing-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
wavefront +
    + +
  • events
  • + +
+
+
    + +
  • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ibm-spectrum-scale-csi-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibm-spectrum-scale-csi-operator.v2.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
nfs-provisioner-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • nfs-provisioner-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
ack-applicationautoscaling-controller +
    + +
  • autoscaling
  • + +
+
+
    + +
  • ack-applicationautoscaling-controller.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • ack-applicationautoscaling-controller.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
anchore-engine +
    + +
  • events
  • + +
+
+
    + +
  • anchore-engine-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • anchore-engine-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
flagsmith +
    + +
  • events
  • + +
+
+
    + +
  • flagsmith-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • flagsmith-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hpe-ezmeral-csi-operator +
    + +
  • events
  • + +
+
+
    + +
  • hpe-ezmeral-csi-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • hpe-ezmeral-csi-operator.v1.0.4 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kogito-operator +
    + +
  • events
  • + +
+
+
    + +
  • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.11.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.11.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.12.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.13.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.14.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.15.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.16.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.2.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.3.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.4.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.5.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.6.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.7.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.8.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.9.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • kogito-operator.v1.9.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kube-arangodb +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
trivy-operator +
    + +
  • events
  • + +
+
+
    + +
  • trivy-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • trivy-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • trivy-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • trivy-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
argocd-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • argocd-operator.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.14 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.15 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • argocd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
+
infinispan +
    + +
  • events
  • + +
  • batch
  • + +
  • events.k8s.io
  • + +
+
+
    + +
  • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.0.6 - (label=,max=not set,channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.1.5 - (label=,max=4.8,channels=[2.1.x 2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.1.6 - (label=,max=4.8,channels=[2.1.x],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.1.7 - (label=,max=4.8,channels=[2.1.x],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.2.0 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.2.1 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.2.2 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
  • infinispan-operator.v2.2.3 - (label=,max=not set,channels=[2.2.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "events.k8s.io"])
  • + +
+
istio-workspace-operator +
    + +
  • events
  • + +
+
+
    + +
  • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • istio-workspace-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kubestone +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
mattermost-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
nuxeo-operator +
    + +
  • events
  • + +
+
+
    + +
  • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
alvearie-imaging-ingestion +
    + +
  • events
  • + +
+
+
    + +
  • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • imaging-ingestion-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
dynatrace-operator +
    + +
  • events
  • + +
  • CronJob
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • dynatrace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "CronJob" "batch" "policy"])
  • + +
  • dynatrace-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "CronJob" "batch" "policy"])
  • + +
  • dynatrace-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "CronJob" "batch"])
  • + +
+
nsm-operator-registry +
    + +
  • events
  • + +
+
+
    + +
  • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
tf-operator +
    + +
  • events
  • + +
+
+
    + +
  • tf-operator.latest - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • tf-operator.v0.0.1-2011 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
topolvm-operator +
    + +
  • batch
  • + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • topolvm-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
+
cluster-impairment-operator +
    + +
  • events
  • + +
+
+
    + +
  • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cluster-impairment-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
k8gb +
    + +
  • discovery.k8s.io
  • + +
+
+
    + +
  • k8gb.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
  • k8gb.v0.8.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
  • k8gb.v0.8.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
  • k8gb.v0.8.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
  • k8gb.v0.8.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
  • k8gb.v0.8.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["discovery.k8s.io"])
  • + +
+
ovms-operator +
    + +
  • events
  • + +
+
+
    + +
  • ovms-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
spinnaker-operator +
    + +
  • events
  • + +
+
+
    + +
  • spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
tidb-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • tidb-operator.1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • tidb-operator.1.0.0-beta1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • tidb-operator.v1.1.6 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
couchdb-operator +
    + +
  • events
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • couchdb-operator.v1.0.14 - (label=,max=not set,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • couchdb-operator.v1.1.0 - (label=,max=not set,channels=[v1.1],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • couchdb-operator.v1.2.1 - (label=,max=not set,channels=[v1.2],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • couchdb-operator.v1.3.1 - (label=,max=not set,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[v1.4],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • couchdb-operator.v2.2.0 - (label=,max=not set,channels=[v2.2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
+
intel-device-plugins-operator +
    + +
  • events
  • + +
+
+
    + +
  • intel-device-plugins-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • intel-device-plugins-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • intel-device-plugins-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • intel-device-plugins-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
portworx +
    + +
  • events
  • + +
+
+
    + +
  • portworx-operator.v1.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
opentelemetry-operator +
    + +
  • events
  • + +
+
+
    + +
  • opentelemetry-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.27.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.36.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.37.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.38.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.39.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.40.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.41.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • opentelemetry-operator.v0.42.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
akka-cluster-operator +
    + +
  • events
  • + +
+
+
    + +
  • akka-cluster-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • akka-cluster-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • akka-cluster-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • akka-cluster-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cert-manager +
    + +
  • events
  • + +
+
+
    + +
  • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.5.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • cert-manager.v1.6.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kiali +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • kiali-operator.v0.18.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.1.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.10.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.11.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.13.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.15.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.19.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.22.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.24.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.25.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.26.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.27.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.28.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.29.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.3.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.30.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.31.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.32.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.33.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.34.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.35.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.36.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.37.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.38.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.39.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.4.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.40.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.41.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.42.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.43.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.44.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.6.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.7.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • kiali-operator.v1.9.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
+
rook-ceph +
    + +
  • batch
  • + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • rook-ceph.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • rook-ceph.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • rook-ceph.v1.1.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
+
vault-helm +
    + +
  • events
  • + +
+
+
    + +
  • vault-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • vault-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
banzaicloud-kafka-operator +
    + +
  • events
  • + +
+
+
    + +
  • banzaicloud-kafka-operator.0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cassandra-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
eunomia +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • eunomia.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eunomia.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eunomia.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eunomia.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eunomia.v0.1.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
percona-postgresql-operator +
    + +
  • batch
  • + +
+
+
    + +
  • percona-postgresql-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch"])
  • + +
+
runtime-component-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • runtime-component-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • runtime-component-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • runtime-component-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
  • runtime-component-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
strimzi-kafka-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.26.0 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.26.1 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.27.0 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • strimzi-cluster-operator.v0.27.1 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
elastic-cloud-eck +
    + +
  • events
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • elastic-cloud-eck.v0.9.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.0.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.0.0-beta1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.0.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.1.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.1.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.1.2 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.2.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.2.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.3.0 - (label=,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • elastic-cloud-eck.v1.9.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
+
postgresql-operator +
    + +
  • events
  • + +
+
+
    + +
  • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
sap-btp-operator +
    + +
  • events
  • + +
+
+
    + +
  • sap-btp-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • sap-btp-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • sap-btp-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hive-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • hive-operator.v1.0.10 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.11 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.12 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.13 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.14 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.16 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.17 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.18 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.19 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.0.9 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.0 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.1 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.10 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.11 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.12 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.13 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.14 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.16 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.2 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.3 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.4 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.5 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.9 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.9-1.1.8.1 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.1.9-1.1.8.2 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3179-0756b70e6 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3222-1411793 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3254-512b7f4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3274-a27a4f7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3299-f0cc1ba - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3310-bc1417a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3329-16c6e0f - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3337-d668960 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3359-8f0773c - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3375-1f0f3eb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3391-55f6363 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3427-e50103a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3431-6ba92bb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v1.2.3457-b212e8a - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.3.3033-c1c7735 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3180-7299056 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3189-026033b - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3192-fae0111 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3194-f82b7d8 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3197-6c9c8e4 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3199-cce4cb9 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3201-8c50440 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • hive-operator.v2.4.3203-672cfe7 - (label=,max=not set,channels=[ocm-2.4],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
kubefed-operator +
    + +
  • events
  • + +
+
+
    + +
  • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
community-kubevirt-hyperconverged +
    + +
  • events
  • + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.4.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.4.1 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.4.2 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.4.3 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
  • kubevirt-hyperconverged-operator.v1.5.0 - (label=v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "policy"])
  • + +
+
eclipse-che +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.30.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.30.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.31.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.31.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.31.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.32.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.32.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.32.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.33.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.34.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.36.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.36.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.36.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.37.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.37.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.38.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.38.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.38.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.39.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.39.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
  • eclipse-che.v7.39.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
machine-deletion-operator +
    + +
  • events
  • + +
+
+
    + +
  • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
grafana-operator +
    + +
  • events
  • + +
+
+
    + +
  • grafana-operator.v1.3.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v2.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.10.3 - (label=,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v3.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v4.0.0 - (label=,max=4.8,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v4.0.1 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v4.0.2 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v4.1.0 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • grafana-operator.v4.1.1 - (label=,max=not set,channels=[v4],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hpa-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
spark-gcp +
    + +
  • events
  • + +
+
+
    + +
  • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ext-postgres-operator +
    + +
  • events
  • + +
+
+
    + +
  • ext-postgres-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ext-postgres-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ext-postgres-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
open-liberty +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • open-liberty-0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
  • open-liberty-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "batch"])
  • + +
+
splunk +
    + +
  • events
  • + +
+
+
    + +
  • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
victoriametrics-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • EndpointSlice
  • + +
  • autoscaling
  • + +
+
+
    + +
  • victoriametrics-operator.v0.10.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.11.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.12.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.12.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.13.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.14.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.15.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.16.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.17.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.17.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.19.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.19.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.20.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.21.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.22.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.6.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.7.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
  • victoriametrics-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "EndpointSlice" "autoscaling"])
  • + +
+
varnish-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
couchbase-enterprise +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • couchbase-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • couchbase-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • couchbase-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • couchbase-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • couchbase-operator.v2.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • couchbase-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • couchbase-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
ibmcloud-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibmcloud-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibmcloud-operator.v1.0.10 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibmcloud-operator.v1.0.11 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • ibmcloud-operator.v1.0.12 - (label=,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
enc-key-sync +
    + +
  • events
  • + +
+
+
    + +
  • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
keda +
    + +
  • events
  • + +
+
+
    + +
  • keda.v1.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • keda.v2.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
klusterlet +
    + +
  • events
  • + +
  • events.k8s.io
  • + +
+
+
    + +
  • klusterlet.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • klusterlet.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • klusterlet.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • klusterlet.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
  • klusterlet.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "events.k8s.io"])
  • + +
+
ks-releaser-operator +
    + +
  • events
  • + +
+
+
    + +
  • ks-releaser-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
snapscheduler +
    + +
  • events
  • + +
+
+
    + +
  • snapscheduler.v2.0.0 - (label=,max=not set,channels=[candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • snapscheduler.v2.1.0 - (label=,max=not set,channels=[candidate stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
api-operator +
    + +
  • events
  • + +
  • batch
  • + +
  • autoscaling
  • + +
+
+
    + +
  • api-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v1.2.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
  • api-operator.v2.0.0 - (label=,max=not set,channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
+
apicast-community-operator +
    + +
  • events
  • + +
+
+
    + +
  • apicast-community-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.1.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.2.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • apicast-community-operator.v0.4.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
mariadb-operator-app +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • mariadb-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • mariadb-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • mariadb-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • mariadb-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
sealed-secrets-operator-helm +
    + +
  • events
  • + +
+
+
    + +
  • sealed-secrets-operator-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • sealed-secrets-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
service-binding-operator +
    + +
  • events
  • + +
+
+
    + +
  • service-binding-operator.v0.10.0 - (label=,max=not set,channels=[beta candidate],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.11.0 - (label=,max=not set,channels=[candidate],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.4.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.5.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.6.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.7.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • service-binding-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
tektoncd-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • autoscaling
  • + +
  • batch
  • + +
+
+
    + +
  • tektoncd-operator.v0.15.2-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "autoscaling" "batch"])
  • + +
  • tektoncd-operator.v0.23.0-2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "autoscaling"])
  • + +
  • tektoncd-operator.v0.24.1-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "autoscaling"])
  • + +
  • tektoncd-operator.v0.49.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "autoscaling" "batch"])
  • + +
+
etcd +
    + +
  • events
  • + +
+
+
    + +
  • etcdoperator-community.v0.6.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • etcdoperator.v0.9.0 - (label=,max=not set,channels=[singlenamespace-alpha clusterwide-alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • etcdoperator.v0.9.2 - (label=,max=not set,channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • etcdoperator.v0.9.2-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • etcdoperator.v0.9.4 - (label=,max=not set,channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • etcdoperator.v0.9.4-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
instana-agent +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • instana-agent-operator.v0.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.0.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.0.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.1.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.1.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.1.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.1.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.1.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.2.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.2.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.10 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v0.3.9 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • instana-agent-operator.v1.0.5 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
rook-edgefs +
    + +
  • batch
  • + +
+
+
    + +
  • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch"])
  • + +
+
syndesis +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • syndesis-operator.1.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
xrootd-operator +
    + +
  • events
  • + +
+
+
    + +
  • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.26_quay.io_operatorhubio_catalog_latest_2022-01-25.html b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.26_quay.io_operatorhubio_catalog_latest_2022-01-25.html new file mode 100644 index 00000000..bcf41c7d --- /dev/null +++ b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis-1.26_quay.io_operatorhubio_catalog_latest_2022-01-25.html @@ -0,0 +1,10008 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Removed API(s) in 1.26/OCP 4.13 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
nfd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nfd-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
node-healthcheck-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • node-healthcheck-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hedvig-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hedvig-operator.v1.0.0-beta - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hedvig-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql-operator-dev4devs-com +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datatrucker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datatrucker-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datatrucker-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datatrucker-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
beegfs-csi-driver-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • beegfs-csi-driver-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • beegfs-csi-driver-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubefed-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kogito-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • 1.x
  • + +
+
+
    + +
+
+
    + +
  • kogito-operator.v0.11.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.12.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.13.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.14.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.15.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.16.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v0.17.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.0.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.1.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.11.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.11.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.12.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.13.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.14.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.15.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.16.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.2.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.3.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.4.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.5.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.6.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.7.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.8.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.9.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kogito-operator.v1.9.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
pystol +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ovms-operator.v0.1.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ovms-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sematext +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sematext-operator.v1.0.33 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • sematext-operator.v1.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sematext-operator.v1.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
snyk-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • snyk-operator.v1.30.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.32.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.33.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.36.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.40.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.41.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.50.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.54.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.55.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.59.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.64.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.66.16 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.66.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.68.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.68.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.70.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.70.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.72.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.73.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snyk-operator.v1.80.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wavefront +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-operator.v1.4.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-operator.v1.7.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-server-mongodb-operator +
    + +
+
+
    + +
  • stable
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • percona-server-mongodb-operator.v1.0.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.1.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.10.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.2.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.3.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-server-mongodb-operator.v1.9.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
dnext-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dnext.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
metallb-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
druid-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
apicurio-registry +
    + +
+
+
    + +
  • alpha
  • + +
  • 2.x
  • + +
+
+
    + +
+
+
    + +
  • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
ack-ecr-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-ecr-controller.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ecr-controller.v0.0.14 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
submariner +
    + +
+
+
    + +
  • alpha
  • + +
  • alpha-0.10
  • + +
  • alpha-0.11
  • + +
+
+
    + +
+
+
    + +
  • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.11.0 - (label=,max=not set,channels=[alpha-0.11],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
argocd-operator-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • argocd-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator-helm.v0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
apicast-community-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • apicast-community-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.1.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.2.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • apicast-community-operator.v0.4.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kiali +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kiali-operator.v0.18.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.1.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.10.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.11.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.13.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.15.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.19.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.22.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.24.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.25.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.26.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.27.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.28.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.29.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.3.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.30.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.31.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.32.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.33.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.34.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.35.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.36.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.37.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.38.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.39.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.4.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.40.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.41.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.42.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.43.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.44.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.6.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.7.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kiali-operator.v1.9.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator-community +
    + +
+
+
    + +
  • maintenance-1.5
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[maintenance-1.5 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.5.1 - (label=,max=not set,channels=[maintenance-1.5],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.7.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.8.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
poison-pill-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • poison-pill.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
opentelemetry-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • opentelemetry-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.27.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.36.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.37.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.38.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.39.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.40.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.41.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opentelemetry-operator.v0.42.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
azure-service-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • azure-service-operator.v0.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.24492 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • azure-service-operator.v1.0.28631 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cass-operator-community +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cass-operator.v1.9.0 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ks-releaser-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ks-releaser-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
silicom-sts-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • silicom-sts-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
akka-cluster-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • akka-cluster-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • akka-cluster-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
clickhouse +
    + +
+
+
    + +
  • latest
  • + +
+
+
    + +
+
+
    + +
  • clickhouse-operator.v0.10.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.12.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.13.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.13.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.14.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.15.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.16.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.16.1 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.5.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.6.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.7.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.8.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.0 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.1 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.2 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.3 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.4 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.5 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.6 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.7 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.8 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • clickhouse-operator.v0.9.9 - (label=,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-dynamodb-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-dynamodb-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-dynamodb-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-dynamodb-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
composable-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • composable-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
chaosblade-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
appdynamics-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • appdynamics-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appdynamics-operator.v0.6.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
myvirtualdirectory +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • myvirtualdirectory.1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgres-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • postgres-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgres-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgres-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
victoriametrics-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • victoriametrics-operator.v0.10.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.11.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.12.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.12.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.13.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.14.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.15.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.16.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.17.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.17.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.18.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.19.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.19.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.20.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.21.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.22.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.6.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.7.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • victoriametrics-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
aiven-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aiven-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aiven-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rqlite-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • rqlite-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aqua +
    + +
+
+
    + +
  • alpha
  • + +
  • 5.3.0
  • + +
  • 6.0.0
  • + +
  • 6.5.0
  • + +
  • 6.2.0
  • + +
+
+
    + +
+
+
    + +
  • aqua-operator.v0.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v0.0.2 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.0 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.1 - (label=,max=not set,channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v5.3.0 - (label=,max=not set,channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.0.0 - (label=,max=not set,channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.2.0 - (label=,max=not set,channels=[6.2.0],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.2.1 - (label=,max=not set,channels=[6.2.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • aqua-operator.v6.5.0 - (label=,max=not set,channels=[6.5.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aqua-operator.v6.5.1 - (label=,max=not set,channels=[6.5.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-elasticache-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-elasticache-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-elasticache-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-elasticache-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
spark-gcp +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-operator.v0.15.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.15.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.15.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.18.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.18.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.19.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.22.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.23.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.24.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.25.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.25.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.26.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v0.26.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • knative-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
metering-upstream +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
synapse-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • synapse-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-operator-kubernetes +
    + +
+
+
    + +
  • stable
  • + +
  • unstable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-operator-kubernetes.v0.3.1 - (label=,max=not set,channels=[stable unstable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cryostat-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cryostat-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
enmasse +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • enmasse.0.28.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.28.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.29.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.30.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.30.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.31.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • enmasse.0.32.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
camel-k +
    + +
+
+
    + +
  • stable
  • + +
  • stable-1.7
  • + +
  • stable-1.4
  • + +
  • stable-1.5
  • + +
  • stable-1.6
  • + +
  • stable-1.3
  • + +
+
+
    + +
+
+
    + +
  • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.3 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.4 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.5 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.6.0 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.6.1 - (label=,max=not set,channels=[stable stable-1.7 stable-1.6],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • camel-k-operator.v1.7.0 - (label=,max=not set,channels=[stable stable-1.7],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
atlasmap-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • atlasmap-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • atlasmap-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
traefikee-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • traefikee-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v0.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v2.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • traefikee-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
argocd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • argocd-operator.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.14 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.15 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • argocd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-quantum-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibmcloud-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibmcloud-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.10 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.11 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.6 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.7 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.8 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v0.1.9 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.10 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.11 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibmcloud-operator.v1.0.12 - (label=,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
credstash-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-access-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-access-operator.v21.10.0 - (label=v4.6-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cluster-impairment-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-impairment-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
keycloak-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v11.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v12.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v12.0.3 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v13.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v13.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v14.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.1.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v15.1.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v16.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v16.1.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v7.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v8.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v8.0.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v9.0.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keycloak-operator.v9.0.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-eks-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-eks-controller.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-eks-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-eks-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
siddhi-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.2.7 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.2.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ditto-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ditto-operator.v0.1.0 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.1.1 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.2.0 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.3.1 - (label=v4.6-v4.9,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ditto-operator.v0.4.0 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zoperator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
logging-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • logging-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • logging-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloud-native-postgresql +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.10.0 - (label=,max=4.9,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.11.0 - (label=v4.6-v4.9,max=4.9,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.12.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.7.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.7.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.8.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.9.1 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cloud-native-postgresql.v1.9.2 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
virt-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
spinnaker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
syndesis +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • syndesis-operator.1.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
topolvm-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • topolvm-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kong +
    + +
+
+
    + +
  • alpha
  • + +
  • alpha.1
  • + +
+
+
    + +
+
+
    + +
  • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • kong.v0.9.0 - (label=,max=not set,channels=[alpha.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mattermost-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mysql +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
banzaicloud-kafka-operator +
    + +
+
+
    + +
  • beta
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • banzaicloud-kafka-operator.0.3.1 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • banzaicloud-kafka-operator.0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nexus-operator-m88i +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nexus-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nexus-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
flux +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.17.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.18.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.19.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.20.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.21.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.21.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.23.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.24.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.25.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flux.v0.25.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ham-deploy +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ham-deploy.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nuxeo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kube-green +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kube-green.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
litmuschaos +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • chaosoperator.v0.1.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • chaosoperator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • chaosoperator.v1.9.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
radanalytics-spark +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sparkoperator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
qserv-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • qserv-operator.v2021.6.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.6.3-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.8.1-rc2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.8.1-rc3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • qserv-operator.v2021.9.1-rc1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
istio +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-postgresql-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-postgresql-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
falcon-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • falcon-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • falcon-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
external-secrets-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • external-secrets-operator.v0.3.10 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.11 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • external-secrets-operator.v0.3.9 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-tomcat-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-tomcat-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
esindex-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • esindex-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elastic-cloud-eck +
    + +
+
+
    + +
  • stable
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • elastic-cloud-eck.v0.9.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.0-beta1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.0.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.1.2 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.2.0 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.2.1 - (label=,max=not set,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.3.0 - (label=,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elastic-cloud-eck.v1.9.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eclipse-che +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.30.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.30.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.31.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.32.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.33.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.36.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.37.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.38.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eclipse-che.v7.39.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
carbonetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • carbonetes-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchdb-operator +
    + +
+
+
    + +
  • v1.0
  • + +
  • v1.1
  • + +
  • v1.2
  • + +
  • v1.3
  • + +
  • v1.4
  • + +
  • v2.2
  • + +
+
+
    + +
+
+
    + +
  • couchdb-operator.v1.0.14 - (label=,max=not set,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.1.0 - (label=,max=not set,channels=[v1.1],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.2.1 - (label=,max=not set,channels=[v1.2],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.3.1 - (label=,max=not set,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[v1.4],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • couchdb-operator.v2.2.0 - (label=,max=not set,channels=[v2.2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
keda +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • keda.v1.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • keda.v2.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cert-manager +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.5.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cert-manager.v1.6.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pcc-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pcc-operator.v0.0.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.1.0 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.1.1 - (label=,max=4.7,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pcc-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubernetes-imagepuller-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubernetes-imagepuller-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-imagepuller-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cockroachdb +
    + +
+
+
    + +
  • stable
  • + +
  • stable-5.x
  • + +
  • stable-3.x
  • + +
+
+
    + +
+
+
    + +
  • cockroachdb.v2.0.9 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v2.1.11 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v3.0.7 - (label=,max=not set,channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openebs +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openebsoperator.v1.0.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.3.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.4.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v1.5.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.10.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.11.0 - (label=,max=4.5,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v2.12.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openebsoperator.v3.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mongodb-atlas-kubernetes +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
alvearie-imaging-ingestion +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • imaging-ingestion-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-sfn-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-sfn-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-sfn-controller.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-sfn-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-s3-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-s3-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-s3-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
trivy-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • trivy-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • trivy-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • trivy-operator.v2.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • trivy-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
microcks +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • microcks-operator.v0.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v0.3.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • microcks-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibmcloud-iam-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tagger +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tagger.v2.1.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-serving-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-serving-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jaeger +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jaeger-operator.v1.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.11.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.12.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.13.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.13.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.18.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.19.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.21.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.25.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.26.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.28.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jaeger-operator.v1.29.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mcad-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nfs-provisioner-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nfs-provisioner-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
robin-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wildfly +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • wildfly-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wildfly-operator.v0.5.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.0.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.0.6 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.3.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.4.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.5.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.6.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • portworx-operator.v1.6.1 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mongodb-enterprise +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • mongodb-enterprise.v0.3.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.13.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.14.0 - (label==v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.2.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.4.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.5.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mongodb-enterprise.v1.9.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
steerd-presto-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tidb-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tidb-operator.1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tidb-operator.1.0.0-beta1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tidb-operator.v1.1.6 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubestone +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemod +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
prisma-cloud-compute-console-operator +
    + +
+
+
    + +
  • latest
  • + +
+
+
    + +
+
+
    + +
  • prisma-cloud-compute-console-operator.v1.0.0 - (label=,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rocketmq-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
shipwright-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • shipwright-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • shipwright-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
verticadb-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • verticadb-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • verticadb-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
yugabyte-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-kms-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-kms-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-kms-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-kms-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-ec2-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-ec2-controller.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ec2-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-ec2-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
splunk +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kube-arangodb +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
lightbend-console-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
oneagent +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-monitoring.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.10.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.4.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.5.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.5.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.7.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.8.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dynatrace-monitoring.v0.9.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-lambda-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-lambda-controller.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-lambda-controller.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cassandra-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
opsmx-spinnaker-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • opsmx-spinnaker-operator.v1.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.17.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • opsmx-spinnaker-operator.v1.20.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-xtradb-cluster-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-xtradb-cluster-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.10.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • percona-xtradb-cluster-operator.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
lib-bucket-provisioner +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8gb +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • k8gb.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8gb.v0.8.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
api-operator +
    + +
+
+
    + +
  • stable
  • + +
  • 2.x-stable
  • + +
+
+
    + +
+
+
    + +
  • api-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v1.2.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • api-operator.v2.0.0 - (label=,max=not set,channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sealed-secrets-operator-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sealed-secrets-operator-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sealed-secrets-operator-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
planetscale +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • planetscale-operator.v0.1.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • planetscale-operator.v0.1.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elastic-phenix-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rook-edgefs +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tf-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tf-operator.latest - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • tf-operator.v0.0.1-2011 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
noobaa-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • noobaa-operator.v2.0.10 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.7 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.8 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.0.9 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.1.0 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.1.1 - (label=,max=not set,channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v5.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • noobaa-operator.v5.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tackle-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v0.0.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tackle-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
project-quay-container-security-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
instana-agent +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • instana-agent-operator.v0.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.0.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.1.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.2.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.2.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.10 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.5 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.7 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v0.3.9 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.4 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v1.0.5 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-opensearchservice-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-opensearchservice-controller.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-opensearchservice-controller.v0.0.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ember-csi-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • ember-csi-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ember-csi-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ember-csi-operator.v0.9.4 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datadog-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datadog-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.2.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.0 - (label=,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.1 - (label=,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • datadog-operator.v0.7.2 - (label=,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
universal-crossplane +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • universal-crossplane.1.2.1-up.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.1-up.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.2-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.2.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.3.1-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.3.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.4.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • universal-crossplane.1.5.1-up.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-enterprise +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cluster-manager +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cluster-manager.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • cluster-manager.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
apimatic-kubernetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nsm-operator-registry +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
deployment-validation-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • deployment-validation-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • deployment-validation-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
grafana-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • v4
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • grafana-operator.v1.3.0 - (label=,max=not set,channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v2.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.10.3 - (label=,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.8.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v3.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • grafana-operator.v4.0.0 - (label=,max=4.8,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.0.1 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.0.2 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.1.0 - (label=,max=not set,channels=[v4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • grafana-operator.v4.1.1 - (label=,max=not set,channels=[v4],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-spectrum-scale-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-spectrum-scale-csi-operator.v2.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
appsody-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • appsody-operator.v0.1.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.2.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • appsody-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
enc-key-sync +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-applicationautoscaling-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-applicationautoscaling-controller.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-applicationautoscaling-controller.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
etcd +
    + +
+
+
    + +
  • singlenamespace-alpha
  • + +
  • clusterwide-alpha
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • etcdoperator-community.v0.6.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • etcdoperator.v0.9.0 - (label=,max=not set,channels=[singlenamespace-alpha clusterwide-alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.2 - (label=,max=not set,channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.2-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • etcdoperator.v0.9.4 - (label=,max=not set,channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • etcdoperator.v0.9.4-clusterwide - (label=,max=not set,channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
prometheus-exporter-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • prometheus-exporter-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheus-exporter-operator.v0.2.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
rook-ceph +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • rook-ceph.v1.0.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • rook-ceph.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • rook-ceph.v1.1.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
strimzi-kafka-operator +
    + +
+
+
    + +
  • strimzi-0.19.x
  • + +
  • strimzi-0.20.x
  • + +
  • strimzi-0.25.x
  • + +
  • strimzi-0.26.x
  • + +
  • stable
  • + +
  • strimzi-0.27.x
  • + +
  • strimzi-0.21.x
  • + +
  • strimzi-0.23.x
  • + +
  • strimzi-0.24.x
  • + +
  • strimzi-0.22.x
  • + +
+
+
    + +
+
+
    + +
  • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.20.x strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.21.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.23.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x strimzi-0.24.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.26.0 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.26.1 - (label=,max=not set,channels=[strimzi-0.26.x stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.27.0 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • strimzi-cluster-operator.v0.27.1 - (label=,max=not set,channels=[stable strimzi-0.27.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
klusterlet +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • klusterlet.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • klusterlet.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeturbo +
    + +
+
+
    + +
  • v8.4.0
  • + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.2.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.0 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.3 - (label=,max=not set,channels=[v8.4.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.0 - (label=,max=not set,channels=[v8.4.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeflow +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubeflow.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeflow.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeflow.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tektoncd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • tektoncd-operator.v0.15.2-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.23.0-2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.24.1-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tektoncd-operator.v0.49.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshift-qiskit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openshift-qiskit-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • openshift-qiskit-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
appranix +
    + +
+
+
    + +
  • deprecated
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ax-cps-operator.v1.0.0 - (label=,max=not set,channels=[deprecated stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ax-cps-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
falco +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • falco-operator.v0.5.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • falco-operator.v0.7.6 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
event-streams-topic +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • event-streams-topic.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • event-streams-topic.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cos-bucket-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cos-bucket-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aws-auth-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • aws-auth-operator.v0.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubernetes-nmstate-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubernetes-nmstate-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-nmstate-operator.v0.37.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubernetes-nmstate-operator.v0.47.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
postgresql +
    + +
+
+
    + +
  • original_41
  • + +
  • stable
  • + +
  • original_43
  • + +
  • original_42
  • + +
  • original_40
  • + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v4.0.1 - (label=,max=not set,channels=[original_40],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.1.0 - (label=,max=not set,channels=[original_41],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.0 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.1 - (label=,max=not set,channels=[original_43 stable original_42],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.2.2 - (label=,max=not set,channels=[original_43 stable original_42],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.3.2 - (label=,max=not set,channels=[original_43 stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.6.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v4.7.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • postgresoperator.v5.0.2 - (label=v4.6-v4.9,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6-v4.9,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.4 - (label=v4.6-v4.9,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
starboard-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • starboard-operator.v0.10.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.10.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.11.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.12.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.13.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.14.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • starboard-operator.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
vault-helm +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • vault-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • vault-helm.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sap-btp-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sap-btp-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sap-btp-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sap-btp-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ext-postgres-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ext-postgres-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ext-postgres-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ext-postgres-operator.v0.4.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
iot-simulator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • iot-simulator.0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
open-liberty +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • open-liberty-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • open-liberty-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
skydive-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • skydive-operator.v0.0.49 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • skydive-operator.v0.0.50 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
service-binding-operator +
    + +
+
+
    + +
  • beta
  • + +
  • candidate
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • service-binding-operator.v0.10.0 - (label=,max=not set,channels=[beta candidate],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • service-binding-operator.v0.11.0 - (label=,max=not set,channels=[candidate],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • service-binding-operator.v0.4.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.5.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.6.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.7.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • service-binding-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
knative-eventing-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • knative-eventing-operator.v0.13.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
multicluster-operators-subscription +
    + +
+
+
    + +
  • release-2.3
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • multicluster-operators-subscription.v0.1.2 - (label=,max=not set,channels=[alpha release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
storageos +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • storageosoperator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.3.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • storageosoperator.v2.5.0-beta.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
yaks +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • yaks-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • yaks-operator.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-ezmeral-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-ezmeral-csi-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-ezmeral-csi-operator.v1.0.4 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vault +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jenkins-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • jenkins-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • jenkins-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-jet-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-jet-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
istio-workspace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • istio-workspace-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-essentials +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.1.20 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.301 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.551 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.552 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.553 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.556 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.557 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.2.755 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.3.958 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crossplane +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • crossplane.v0.11.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hawkbit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hawkbit-operator.v0.1.1 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.2 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.3 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.4 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hawkbit-operator.v0.1.5 - (label=v4.6-v4.8,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
awss3-operator-registry +
    + +
+
+
    + +
  • original
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • awss3operator.v1.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • awss3operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-apigatewayv2-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-apigatewayv2-controller.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-apigatewayv2-controller.v0.0.11 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-apigatewayv2-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-jet-enterprise-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-jet-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hazelcast-jet-enterprise-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemq-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • original
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubemq-operator.v0.3.2 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • kubemq-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubemq-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpa-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
prometheus +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • prometheusoperator.0.14.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.15.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.22.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.27.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.32.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.37.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • anchore-engine-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-application-gateway-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-application-gateway-operator.v0.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-application-gateway-operator.v21.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
intel-device-plugins-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • intel-device-plugins-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • intel-device-plugins-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
snapscheduler +
    + +
+
+
    + +
  • stable
  • + +
  • candidate
  • + +
+
+
    + +
+
+
    + +
  • snapscheduler.v1.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snapscheduler.v2.0.0 - (label=,max=not set,channels=[candidate stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • snapscheduler.v2.1.0 - (label=,max=not set,channels=[candidate stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.11.1 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • seldon-operator.v1.7.0 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
+
halkyon +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • halkyon.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • halkyon.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • halkyon.v0.1.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-mq-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-mq-controller.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-mq-controller.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-mq-controller.v0.0.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ripsaw +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
flagsmith +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • flagsmith-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • flagsmith-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
mariadb-operator-app +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • mariadb-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • mariadb-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
integrity-shield-operator +
    + +
+
+
    + +
  • alpha-0.3.1
  • + +
  • alpha
  • + +
  • alpha-0.3.0
  • + +
+
+
    + +
+
+
    + +
  • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha-0.3.1 alpha alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.3.0 - (label=,max=not set,channels=[alpha-0.3.1 alpha-0.3.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • integrity-shield-operator.v0.3.1 - (label=,max=not set,channels=[alpha-0.3.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
clever-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cleveroperator.v0.3.5 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kom-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • runtime-component-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • runtime-component-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xrootd-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
machine-deletion-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pulp-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.6.1 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pulp-operator.v0.7.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
application-services-metering-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • application-services-metering-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • application-services-metering-operator.v0.6.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ack-rds-controller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ack-rds-controller.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ack-rds-controller.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hive-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • ocm-2.3
  • + +
  • ocm-2.4
  • + +
  • ocm-2.2
  • + +
  • ocm-2.1
  • + +
+
+
    + +
+
+
    + +
  • hive-operator.v1.0.10 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.11 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.12 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.13 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.14 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.16 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.17 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.18 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.19 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.0.9 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.0 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.1 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.10 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.11 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.12 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.13 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.14 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.16 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.2 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.3 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.4 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.5 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.9 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.1.9-1.1.8.1 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v1.1.9-1.1.8.2 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v1.2.3179-0756b70e6 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3222-1411793 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3254-512b7f4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3274-a27a4f7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3299-f0cc1ba - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3310-bc1417a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3329-16c6e0f - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3337-d668960 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3359-8f0773c - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3375-1f0f3eb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3391-55f6363 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3427-e50103a - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3431-6ba92bb - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v1.2.3457-b212e8a - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • hive-operator.v2.3.3033-c1c7735 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3180-7299056 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3189-026033b - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3192-fae0111 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3194-f82b7d8 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3197-6c9c8e4 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3199-cce4cb9 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3201-8c50440 - (label=,max=not set,channels=[ocm-2.4],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • hive-operator.v2.4.3203-672cfe7 - (label=,max=not set,channels=[ocm-2.4],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
community-kubevirt-hyperconverged +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.0 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.1 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.2 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.4.3 - (label=v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubevirt-hyperconverged-operator.v1.5.0 - (label=v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dell-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • dell-csi-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.5.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • dell-csi-operator.v1.6.0 - (label=,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-driver-operator.v1.0.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.1.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.2.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.3.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.4.0 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v1.4.1 - (label=v4.4,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • hpe-csi-operator.v2.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
project-quay +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-operator +
    + +
+
+
    + +
  • stable
  • + +
  • preview
  • + +
+
+
    + +
+
+
    + +
  • redis-operator.v0.0.1 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.2.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.3.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.4.0 - (label=,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-operator.v0.9.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infinispan +
    + +
+
+
    + +
  • 1.1.x
  • + +
  • 2.0.x
  • + +
  • 2.1.x
  • + +
  • dev-preview
  • + +
  • preview
  • + +
  • 2.2.x
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[1.1.x 2.0.x 2.1.x dev-preview preview 2.2.x stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x 2.1.x dev-preview preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.0.6 - (label=,max=not set,channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.0 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.1 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.2 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x preview 2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.5 - (label=,max=4.8,channels=[2.1.x 2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.6 - (label=,max=4.8,channels=[2.1.x],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.1.7 - (label=,max=4.8,channels=[2.1.x],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.0 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.1 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.2 - (label=,max=not set,channels=[2.2.x],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinispan-operator.v2.2.3 - (label=,max=not set,channels=[2.2.x],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
t8c +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • t8c-operator.v42.0.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.1.0 - (label=,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.5.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.16.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.17.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v7.22.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v8.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
varnish-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eunomia +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • eunomia.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • eunomia.v0.1.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pmem-csi-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v0.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.8.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.9.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v0.9.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • pmem-csi-operator.v1.0.1 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
wso2am-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • wso2am-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wso2am-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • wso2am-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sigstore-helm-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
jaeger +
    + +
  • autoscaling
  • + +
+
+
    + +
  • jaeger-operator.v1.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.17.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.18.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.18.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.19.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.20.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.21.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.22.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.25.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.26.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.28.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • jaeger-operator.v1.29.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
runtime-component-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • runtime-component-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • runtime-component-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • runtime-component-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • runtime-component-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
ack-applicationautoscaling-controller +
    + +
  • autoscaling
  • + +
+
+
    + +
  • ack-applicationautoscaling-controller.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • ack-applicationautoscaling-controller.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
kiali +
    + +
  • autoscaling
  • + +
+
+
    + +
  • kiali-operator.v0.18.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.1.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.10.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.11.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.13.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.15.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.19.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.22.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.24.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.25.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.26.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.27.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.28.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.29.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.3.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.30.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.31.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.32.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.33.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.34.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.35.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.36.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.37.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.38.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.39.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.4.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.40.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.41.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.42.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.43.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.44.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.6.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.7.0 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • kiali-operator.v1.9.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
hpa-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
victoriametrics-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • victoriametrics-operator.v0.15.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.16.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.17.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.17.2 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.18.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.19.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.19.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.20.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.21.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • victoriametrics-operator.v0.22.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
argocd-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • argocd-operator.v0.0.11 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.12 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.14 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.15 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • argocd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
istio +
    + +
  • autoscaling
  • + +
+
+
    + +
  • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
noobaa-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • noobaa-operator.v2.1.0 - (label=,max=not set,channels=[alpha original],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • noobaa-operator.v2.1.1 - (label=,max=not set,channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • noobaa-operator.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • noobaa-operator.v5.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • noobaa-operator.v5.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
federatorai +
    + +
  • autoscaling
  • + +
+
+
    + +
  • federatorai.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.1.20 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.301 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.551 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.552 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.553 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.556 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.557 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.2.755 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.3.958 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
dnext-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • dnext.v0.0.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
open-liberty +
    + +
  • autoscaling
  • + +
+
+
    + +
  • open-liberty-0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • open-liberty-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
gitlab-operator-kubernetes +
    + +
  • autoscaling
  • + +
+
+
    + +
  • gitlab-operator-kubernetes.v0.3.1 - (label=,max=not set,channels=[stable unstable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
tektoncd-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • tektoncd-operator.v0.23.0-2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • tektoncd-operator.v0.24.1-1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • tektoncd-operator.v0.49.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
steerd-presto-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
seldon-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
api-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • api-operator.v1.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v1.2.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • api-operator.v2.0.0 - (label=,max=not set,channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
datadog-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • datadog-operator.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • datadog-operator.v0.7.0 - (label=,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • datadog-operator.v0.7.1 - (label=,max=4.9,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • datadog-operator.v0.7.2 - (label=,max=4.9,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
knative-operator +
    + +
  • autoscaling
  • + +
  • HorizontalPodAutoscaler
  • + +
+
+
    + +
  • knative-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.22.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.23.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.24.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.25.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.25.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.26.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v0.26.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
  • knative-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling" "HorizontalPodAutoscaler"])
  • + +
+
appsody-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • appsody-operator.v0.1.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.2.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.2.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.2.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.3.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.5.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • appsody-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
druid-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
kom-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.22_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html similarity index 94% rename from testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html rename to testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.22_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html index 35b300f7..44cdd86d 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.22_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html @@ -62,13 +62,13 @@ + + + + + + + + +
+ +

Removed API(s) in 1.25/OCP 4.12 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
cisco-hxcsi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ccm-node-agent-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftartifactoryha-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • artifactory-ha-operator.v1.1.14 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • artifactory-ha-operator.v1.1.15 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.18 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.20 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-certified-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
entando-k8s-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
pmem-csi-operator-os +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzounstructured-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftxray-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
linstor-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-runner-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
memcached-operator-ogaye +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzograph-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sanstoragecsi-operator-bundle +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudbees-ci +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infoscale-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infoscale-operator.v7.9.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
installkit-customer +
    + +
+
+
    + +
  • preview
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nginx-ingress-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cilium +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v4.6.1-4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.7.1-1 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xcrypt-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-dx-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vfunction-server-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aikit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
marketplace-games-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • marketplace-games-operator.v1.0.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zabbix-operator-certified +
    + +
+
+
    + +
  • lts
  • + +
+
+
    + +
+
+
    + +
  • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.2.1-1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
iomesh-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8s-triliovault +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine.v1.0.1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemq-operator-marketplace +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crunchy-postgres-operator +
    + +
+
+
    + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-certified +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.6.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eamli-operator +
    + +
+
+
    + +
  • candidate
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
open-liberty-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tigera-operator +
    + +
+
+
    + +
  • release-v1.23
  • + +
  • release-v1.20
  • + +
+
+
    + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
    + +
+
+
    + +
+
+
    + +
+
+
    + +
+
elasticsearch-eck-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elasticsearch-eck-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
anzounstructured-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
hazelcast-enterprise-certified +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
minio-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
open-liberty-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
tigera-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
aikit-operator +
    + +
  • events
  • + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cilium +
    + +
  • events
  • + +
  • discovery.k8s.io
  • + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "discovery.k8s.io"])
  • + +
+
openshiftxray-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
runtime-component-operator-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
sanstoragecsi-operator-bundle +
    + +
  • events
  • + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
seldon-operator-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • policy
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "policy"])
  • + +
+
anzograph-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hpe-csi-operator +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
k8s-triliovault +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
elasticsearch-eck-operator-certified +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • elasticsearch-eck-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
federatorai-certified +
    + +
  • events
  • + +
  • batch
  • + +
  • autoscaling
  • + +
  • policy
  • + +
+
+
    + +
  • federatorai.v4.6.1-4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling" "policy"])
  • + +
  • federatorai.v4.7.1-1 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling" "policy"])
  • + +
+
linstor-operator +
    + +
  • events
  • + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
openshiftartifactoryha-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • artifactory-ha-operator.v1.1.15 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • artifactory-ha-operator.v1.1.18 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
xcrypt-operator +
    + +
  • events
  • + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cloudbees-ci +
    + +
  • events
  • + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
joget-dx-operator +
    + +
  • events
  • + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
memcached-operator-ogaye +
    + +
  • events
  • + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
neuvector-certified-operator +
    + +
  • CronJob
  • + +
+
+
    + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
+
vfunction-server-operator +
    + +
  • events
  • + +
  • batch
  • + +
  • autoscaling
  • + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
+
zabbix-operator-certified +
    + +
  • events
  • + +
+
+
    + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
gitlab-runner-operator +
    + +
  • events
  • + +
+
+
    + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
couchbase-enterprise-certified +
    + +
  • batch
  • + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
+
crunchy-postgres-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
entando-k8s-operator +
    + +
  • events
  • + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
ibm-security-verify-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
iomesh-operator +
    + +
  • events
  • + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
kubemq-operator-marketplace +
    + +
  • events
  • + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cisco-hxcsi-operator +
    + +
  • events
  • + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
pmem-csi-operator-os +
    + +
  • events
  • + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
sysdig-certified +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
nginx-ingress-operator +
    + +
  • events
  • + +
+
+
    + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ovms-operator +
    + +
  • events
  • + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
citrix-ingress-controller-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
dynatrace-operator +
    + +
  • events
  • + +
  • CronJob
  • + +
  • batch
  • + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "CronJob" "batch"])
  • + +
+
eamli-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
infoscale-operator +
    + +
  • events
  • + +
+
+
    + +
  • infoscale-operator.v7.9.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
anzo-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.25_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.25_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html new file mode 100644 index 00000000..d69b48fa --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.25_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html @@ -0,0 +1,3988 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Removed API(s) in 1.25/OCP 4.12 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
t8c-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • t8c-operator.v42.1.0 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • t8c-operator.v42.2.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.3.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.5.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
f5-bigip-ctlr-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • f5-bigip-ctlr-operator.v1.9.0 - (label=v4.6-v4.9,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vfunction-server-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
f5-ipam-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • f5-ipam-controller-operator.v0.0.1 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v4.7.2-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-xtradb-cluster-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-xtradb-cluster-operator-certified.v1.10.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
storageos2 +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • storageosoperator.v2.5.0-beta.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ccm-node-agent-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infinibox-operator-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • infinibox-operator.v2.1.0-rc2 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinibox-operator.v2.1.0-rc3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ako-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vsphere-kubernetes-drivers-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vsphere-kubernetes-drivers-operator.v0.1.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
linstor-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kong-offline-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kong.v0.10.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-enterprise-operator-cert +
    + +
+
+
    + +
  • 6.2.8
  • + +
  • production
  • + +
+
+
    + +
+
+
    + +
  • redis-enterprise-operator.v6.2.8-11 - (label=v4.6-v4.9,max=not set,channels=[6.2.8 production],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-enterprise-operator.v6.2.8-15 - (label=v4.6-v4.9,max=not set,channels=[6.2.8 production],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-spectrum-symphony-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-spectrum-symphony-operator.v1.1.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
marketplace-games-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • marketplace-games-operator.v1.0.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
timemachine-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • timemachine-operator.v1.0.8 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-server-mongodb-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-server-mongodb-operator-certified.v1.11.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-certified-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-runner-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
iomesh-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nginx-ingress-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datadog-operator-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datadog-operator.v0.7.2 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftartifactoryha-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • artifactory-ha-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.20 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.21 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cockroachdb-certified +
    + +
+
+
    + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cockroach-operator.v2.3.0 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroach-operator.v2.5.0 - (label=4.7-4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infoscale-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infoscale-operator.v8.0.0 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.1 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.2 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.20 - (label=v4.8-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
entando-k8s-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
cisco-hxcsi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-storage-odf-operator +
    + +
+
+
    + +
  • stable-v1
  • + +
+
+
    + +
+
+
    + +
  • ibm-storage-odf-operator.v1.0.0 - (label==v4.9,max=not set,channels=[stable-v1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8s-triliovault +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.7 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
network-operator +
    + +
+
+
    + +
  • v1.1.0
  • + +
+
+
    + +
+
+
    + +
  • network-operator.v1.1.0 - (label==4.9,max=not set,channels=[v1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
carbonetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • carbonetes-operator.v1.0.5 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
instana-agent-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • instana-agent-operator.v2.0.0 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.2 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.3 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzograph-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cilium +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloud-native-postgresql +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cloud-native-postgresql.v1.12.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-postgresql-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-postgresql-operator-certified.v1.1.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.2.1-1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sanstoragecsi-operator-bundle +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudbees-ci +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
splunk-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • splunk-operator.v1.0.3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crunchy-postgres-operator +
    + +
+
+
    + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.4 - (label=v4.6-v4.9,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudcasa-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudcasa-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elasticsearch-eck-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • elasticsearch-eck-operator-certified.1.9.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-certified +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.6.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sriov-fec +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sriov-fec.v2.1.0 - (label==v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
conjur-follower-operator +
    + +
+
+
    + +
  • preview
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • conjur-follower-operator.v2.0.2 - (label=v4.6-v4.9,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
simple-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • simple-demo-operator.v0.0.4 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aikit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
couchdb-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
  • v2.2
  • + +
+
+
    + +
+
+
    + +
  • couchdb-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[stable v2.2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xcrypt-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • zts-xcrypt-operator.v1.0.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jianwei-test-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jianwei-test-operator.v0.0.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jinhli-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jinhli-operator.v0.0.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftxray-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pmem-csi-operator-os +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
headspinunifiedcontroller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • headspinunifiedcontroller.v1.0.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zabbix-operator-certified +
    + +
+
+
    + +
  • lts
  • + +
+
+
    + +
+
+
    + +
  • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
memcached-operator-ogaye +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzounstructured-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gpu-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
  • v1.9.0
  • + +
  • v1.8
  • + +
  • beta
  • + +
  • v1.7
  • + +
+
+
    + +
+
+
    + +
  • gpu-operator-certified.v1.7.1 - (label=v4.8,max=not set,channels=[v1.7],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.8.2 - (label=v4.7,max=not set,channels=[v1.8],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.9.0 - (label=v4.8-v4.9,max=not set,channels=[stable v1.9.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.9.0-beta - (label=v4.8-v4.9,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
redhat-marketplace-operator +
    + +
+
+
    + +
  • stable
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • redhat-marketplace-operator.v2.6.0 - (label=v4.6-v4.9,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.8.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeturbo-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubeturbo-operator.v8.3.2 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • kubeturbo-operator.v8.3.3 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.6 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine.v1.0.1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
confluent-for-kubernetes +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • confluent-for-kubernetes.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
installkit-customer +
    + +
+
+
    + +
  • preview
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
    + +
+
+
    + +
+
+
    + +
+
+
    + +
+
open-liberty-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hello-world-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hello-world-operator.0.0.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nutanixcsioperator +
    + +
+
+
    + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • nutanixcsioperator.v2.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eamli-operator +
    + +
+
+
    + +
  • candidate
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
can-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • can-operator.v0.1.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pachyderm-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pachyderm-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemq-operator-marketplace +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tc-simple-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tc-simple-demo-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nxrm-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nxrm-operator-certified.v3.37.1-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pan-cn-series-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pan-cn-series-operator.v1.0.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-dx-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nxiq-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nxiq-operator-certified.v1.131.0-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tigera-operator +
    + +
+
+
    + +
  • release-v1.20
  • + +
  • release-v1.23
  • + +
+
+
    + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-ezmeral-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-ezmeral-csi-operator.v1.0.8 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
k8s-triliovault +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • k8s-triliovault-stable.2.6.7 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
kubeturbo-certified +
    + +
  • events
  • + +
  • PodDisruptionBudget
  • + +
  • policy
  • + +
+
+
    + +
  • kubeturbo-operator.v8.3.3 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "PodDisruptionBudget" "policy"])
  • + +
+
cockroachdb-certified +
    + +
  • batch
  • + +
  • policy
  • + +
+
+
    + +
  • cockroach-operator.v2.3.0 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["batch" "policy"])
  • + +
+
hazelcast-enterprise-certified +
    + +
  • events
  • + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
joget-dx-operator +
    + +
  • events
  • + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
runtime-component-operator-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
dynatrace-operator +
    + +
  • events
  • + +
  • CronJob
  • + +
  • batch
  • + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "CronJob" "batch"])
  • + +
+
seldon-operator-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
  • policy
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling" "policy"])
  • + +
+
tigera-operator +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
zabbix-operator-certified +
    + +
  • events
  • + +
+
+
    + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
memcached-operator-ogaye +
    + +
  • events
  • + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
nginx-ingress-operator +
    + +
  • events
  • + +
+
+
    + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ovms-operator +
    + +
  • events
  • + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
vfunction-server-operator +
    + +
  • events
  • + +
  • batch
  • + +
  • autoscaling
  • + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch" "autoscaling"])
  • + +
+
anzounstructured-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
couchbase-enterprise-certified +
    + +
  • batch
  • + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events" "policy"])
  • + +
+
neuvector-certified-operator +
    + +
  • CronJob
  • + +
+
+
    + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["CronJob"])
  • + +
+
sysdig-certified +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
kubemq-operator-marketplace +
    + +
  • events
  • + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
linstor-operator +
    + +
  • events
  • + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
sanstoragecsi-operator-bundle +
    + +
  • events
  • + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
t8c-certified +
    + +
  • events
  • + +
  • policy
  • + +
  • batch
  • + +
+
+
    + +
  • t8c-operator.v42.2.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy" "batch"])
  • + +
+
ibm-security-verify-operator +
    + +
  • events
  • + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
aikit-operator +
    + +
  • events
  • + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
open-liberty-certified +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
xcrypt-operator +
    + +
  • events
  • + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
anzograph-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
cloudbees-ci +
    + +
  • events
  • + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
gitlab-runner-operator +
    + +
  • events
  • + +
+
+
    + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
cilium +
    + +
  • events
  • + +
  • discovery.k8s.io
  • + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "discovery.k8s.io"])
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
  • events
  • + +
  • autoscaling
  • + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "autoscaling"])
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
ako-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
entando-k8s-operator +
    + +
  • events
  • + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
minio-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
crunchy-postgres-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
cisco-hxcsi-operator +
    + +
  • events
  • + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
hpe-csi-operator +
    + +
  • batch
  • + +
  • events
  • + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["batch" "events"])
  • + +
+
openshiftxray-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
anzo-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
citrix-ingress-controller-operator +
    + +
  • events
  • + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
openshiftartifactoryha-operator +
    + +
  • events
  • + +
  • policy
  • + +
+
+
    + +
  • artifactory-ha-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • artifactory-ha-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
  • artifactory-ha-operator.v1.1.20 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["events" "policy"])
  • + +
+
eamli-operator +
    + +
  • events
  • + +
  • batch
  • + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events" "batch"])
  • + +
+
iomesh-operator +
    + +
  • events
  • + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
nutanixcsioperator +
    + +
  • events
  • + +
+
+
    + +
  • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO, RBAC: ["events"])
  • + +
+
pmem-csi-operator-os +
    + +
  • events
  • + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["events"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html new file mode 100644 index 00000000..639c8454 --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html @@ -0,0 +1,1844 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Removed API(s) in 1.26/OCP 4.13 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
open-liberty-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infoscale-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infoscale-operator.v7.9.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudbees-ci +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzograph-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crunchy-postgres-operator +
    + +
+
+
    + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-dx-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aikit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
iomesh-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftxray-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-certified-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sanstoragecsi-operator-bundle +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v4.6.1-4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • federatorai.v4.7.1-1 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
linstor-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tigera-operator +
    + +
+
+
    + +
  • release-v1.23
  • + +
  • release-v1.20
  • + +
+
+
    + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubemq-operator-marketplace +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
memcached-operator-ogaye +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zabbix-operator-certified +
    + +
+
+
    + +
  • lts
  • + +
+
+
    + +
+
+
    + +
  • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nginx-ingress-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
marketplace-games-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • marketplace-games-operator.v1.0.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cilium +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xcrypt-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzounstructured-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elasticsearch-eck-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • elasticsearch-eck-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-runner-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8s-triliovault +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
installkit-customer +
    + +
+
+
    + +
  • preview
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftartifactoryha-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • artifactory-ha-operator.v1.1.14 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • artifactory-ha-operator.v1.1.15 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.18 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.20 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eamli-operator +
    + +
+
+
    + +
  • candidate
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.2.1-1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vfunction-server-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-certified +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.6.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ccm-node-agent-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
entando-k8s-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
citrix-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cisco-hxcsi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
    + +
+
+
    + +
+
+
    + +
+
+
    + +
+
pmem-csi-operator-os +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine.v1.0.1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
seldon-operator-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
open-liberty-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
runtime-component-operator-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
vfunction-server-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
federatorai-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • federatorai.v4.6.1-4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
  • federatorai.v4.7.1-1 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html new file mode 100644 index 00000000..58682c81 --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis-1.26_registry.redhat.io_redhat_certified_operator_index_v4.9_2022-01-25.html @@ -0,0 +1,3106 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Removed API(s) in 1.26/OCP 4.13 Dashboard

+

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

+ +
+
Data from the image used
+ +
+ +
+
FAQ
+
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
+

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

+
2. What action(s) should I take?
+ +
3. What does it mean for a package to be in amber or green?
+ +
+ +
+
Using deprecated APIs:
+

Packages which has bundles which we found manifests in using the APIs/versions that will be removed

+ + + + + + + + + + + + + + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
+
+ +
+
Removal APIs not found in the bundle manifests:
+

Packages that where we could not find the APIs/versions which will be removed in the bundles manifests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameFindingsChannelsBundles uses API(s)Bundles Migrated
ibm-spectrum-symphony-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-spectrum-symphony-operator.v1.1.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-storage-odf-operator +
    + +
+
+
    + +
  • stable-v1
  • + +
+
+
    + +
+
+
    + +
  • ibm-storage-odf-operator.v1.0.0 - (label==v4.9,max=not set,channels=[stable-v1],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ccm-node-agent-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudcasa-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudcasa-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
f5-bigip-ctlr-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • f5-bigip-ctlr-operator.v1.9.0 - (label=v4.6-v4.9,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gitlab-runner-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nginx-ingress-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • nginx-ingress-operator.v0.4.0 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • nginx-ingress-operator.v0.5.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
open-liberty-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
crunchy-postgres-operator +
    + +
+
+
    + +
  • v5
  • + +
+
+
    + +
+
+
    + +
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • postgresoperator.v5.0.4 - (label=v4.6-v4.9,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
confluent-for-kubernetes +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • confluent-for-kubernetes.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
gpu-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
  • v1.9.0
  • + +
  • v1.8
  • + +
  • beta
  • + +
  • v1.7
  • + +
+
+
    + +
+
+
    + +
  • gpu-operator-certified.v1.7.1 - (label=v4.8,max=not set,channels=[v1.7],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.8.2 - (label=v4.7,max=not set,channels=[v1.8],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.9.0 - (label=v4.8-v4.9,max=not set,channels=[stable v1.9.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • gpu-operator-certified.v1.9.0-beta - (label=v4.8-v4.9,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
conjur-follower-operator +
    + +
+
+
    + +
  • preview
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • conjur-follower-operator.v2.0.2 - (label=v4.6-v4.9,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
simple-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • simple-demo-operator.v0.0.4 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
zabbix-operator-certified +
    + +
+
+
    + +
  • lts
  • + +
+
+
    + +
+
+
    + +
  • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
portworx-certified +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • portworx-operator.v1.6.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anchore-engine +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • anchore-engine.v1.0.1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
elasticsearch-eck-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • elasticsearch-eck-operator-certified.1.9.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nxiq-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nxiq-operator-certified.v1.131.0-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
f5-ipam-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • f5-ipam-controller-operator.v0.0.1 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cilium +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
installkit-customer +
    + +
+
+
    + +
  • preview
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vsphere-kubernetes-drivers-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vsphere-kubernetes-drivers-operator.v0.1.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-istio-sidecar-injector-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
eamli-operator +
    + +
+
+
    + +
  • candidate
  • + +
  • fast
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ako-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tigera-operator +
    + +
+
+
    + +
  • release-v1.20
  • + +
  • release-v1.23
  • + +
+
+
    + +
+
+
    + +
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ovms-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzograph-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
tc-simple-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • tc-simple-demo-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kubeturbo-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • kubeturbo-operator.v8.3.2 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • kubeturbo-operator.v8.3.3 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.3.6 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • kubeturbo-operator.v8.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftxray-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
aikit-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • aikit-operator.v2021.2.100410 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.102120 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92808-dev-a60e5ba - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92814 - (label=v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • aikit-operator.v2021.2.92911 - (label=v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
+
infoscale-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • infoscale-operator.v8.0.0 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.1 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.2 - (label=v4.8-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infoscale-operator.v8.0.20 - (label=v4.8-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
entando-k8s-operator +
    + +
+
+
    + +
  • alpha
  • + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
+
kubemq-operator-marketplace +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
splunk-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • splunk-operator.v1.0.3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
storageos2 +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • storageosoperator.v2.5.0-beta.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
marketplace-games-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • marketplace-games-operator.v1.0.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-adc-istio-ingress-gateway-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hello-world-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hello-world-operator.0.0.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
runtime-component-operator-certified +
    + +
+
+
    + +
  • beta2
  • + +
+
+
    + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nxrm-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nxrm-operator-certified.v3.37.1-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
xcrypt-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • zts-xcrypt-operator.v1.0.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
instana-agent-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • instana-agent-operator.v2.0.0 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.2 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • instana-agent-operator.v2.0.3 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
carbonetes-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • carbonetes-operator.v1.0.5 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
can-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • can-operator.v0.1.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cisco-hxcsi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cisco-hxcsi-operator.v1.2.4 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-cpx-with-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
headspinunifiedcontroller +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • headspinunifiedcontroller.v1.0.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
iomesh-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
timemachine-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • timemachine-operator.v1.0.8 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hazelcast-enterprise-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pmem-csi-operator-os +
    + +
+
+
    + +
  • alpha
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
datadog-operator-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • datadog-operator.v0.7.2 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
t8c-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • t8c-operator.v42.1.0 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • t8c-operator.v42.2.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.3.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • t8c-operator.v42.5.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jianwei-test-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jianwei-test-operator.v0.0.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchbase-enterprise-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • couchbase-operator.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • couchbase-operator.v2.2.1-1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
jinhli-demo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • jinhli-operator.v0.0.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
seldon-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
joget-dx-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.23 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.24 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • joget-dx-openshift-operator.v0.0.25 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cockroachdb-certified +
    + +
+
+
    + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cockroach-operator.v2.3.0 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • cockroach-operator.v2.5.0 - (label=4.7-4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
neuvector-certified-operator +
    + +
+
+
    + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzounstructured-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sysdig-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sysdig-certified.v1.12.43 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • sysdig-certified.v1.12.44 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
minio-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloud-native-postgresql +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • cloud-native-postgresql.v1.12.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
    + +
+
+
    + +
+
+
    + +
+
+
    + +
+
pan-cn-series-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • pan-cn-series-operator.v1.0.0 - (label=v4.7-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-server-mongodb-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-server-mongodb-operator-certified.v1.11.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
openshiftartifactoryha-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • artifactory-ha-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.20 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • artifactory-ha-operator.v1.1.21 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
nutanixcsioperator +
    + +
+
+
    + +
  • beta
  • + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • + +
  • nutanixcsioperator.v2.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
citrix-ingress-controller-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-postgresql-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-postgresql-operator-certified.v1.1.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-block-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:YES)
  • + +
  • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • ibm-block-csi-operator.v1.8.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
percona-xtradb-cluster-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • percona-xtradb-cluster-operator-certified.v1.10.0 - (label=v4.7-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
kong-offline-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • kong.v0.10.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sriov-fec +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sriov-fec.v2.1.0 - (label==v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redhat-marketplace-operator +
    + +
+
+
    + +
  • stable
  • + +
  • beta
  • + +
+
+
    + +
+
+
    + +
  • redhat-marketplace-operator.v2.6.0 - (label=v4.6-v4.9,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
k8s-triliovault +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.5 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.6 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • k8s-triliovault-stable.2.6.7 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
anzo-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
memcached-operator-ogaye +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
sanstoragecsi-operator-bundle +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
pachyderm-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • pachyderm-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
vfunction-server-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
cloudbees-ci +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
hpe-ezmeral-csi-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • hpe-ezmeral-csi-operator.v1.0.8 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
redis-enterprise-operator-cert +
    + +
+
+
    + +
  • 6.2.8
  • + +
  • production
  • + +
+
+
    + +
+
+
    + +
  • redis-enterprise-operator.v6.2.8-11 - (label=v4.6-v4.9,max=not set,channels=[6.2.8 production],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • redis-enterprise-operator.v6.2.8-15 - (label=v4.6-v4.9,max=not set,channels=[6.2.8 production],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
infinibox-operator-certified +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • infinibox-operator.v2.1.0-rc2 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • + +
  • infinibox-operator.v2.1.0-rc3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
dynatrace-operator +
    + +
+
+
    + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
ibm-security-verify-operator +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • ibm-security-verify-operator.v21.11.1 - (label=v4.7,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
federatorai-certified +
    + +
+
+
    + +
  • stable
  • + +
+
+
    + +
+
+
    + +
  • federatorai.v4.7.2-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
couchdb-operator-certified +
    + +
+
+
    + +
  • stable
  • + +
  • v2.2
  • + +
+
+
    + +
+
+
    + +
  • couchdb-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[stable v2.2],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
network-operator +
    + +
+
+
    + +
  • v1.1.0
  • + +
+
+
    + +
+
+
    + +
  • network-operator.v1.1.0 - (label==4.9,max=not set,channels=[v1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
linstor-operator +
    + +
+
+
    + +
  • stable
  • + +
  • alpha
  • + +
+
+
    + +
+
+
    + +
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • + +
+
+
+ + +
+
Potentially Impacted By:
+

Packages which has bundles which might be impacted because we found related RBAC permissions for these APIGroups/resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package NameRBAC APIGroups/Resource(s)Bundles
citrix-adc-istio-ingress-gateway-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
runtime-component-operator-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
vfunction-server-operator +
    + +
  • autoscaling
  • + +
+
+
    + +
  • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
open-liberty-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
seldon-operator-certified +
    + +
  • autoscaling
  • + +
+
+
    + +
  • seldon-operator.v1.12.0 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO, RBAC: ["autoscaling"])
  • + +
+
+
+ + +
+ + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2022-01-13.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2022-01-13.html deleted file mode 100644 index 4251e177..00000000 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2022-01-13.html +++ /dev/null @@ -1,7972 +0,0 @@ - - - - - - - Deprecated API(s) Dashboard - - - - - - - - - - - - - - - - - - - - - - -
- -

Removed API(s) in 1.22/OCP 4.9 Dashboard

-

The audit tool output for the following packages were obtained by checking the image and the bundle manifests distributed. This report aims to try to identify the package distributions that can impact the users on 4.9.

- -
-
Data from the image used
- -
- -
-
FAQ
-
1. Can my package still have bundles using deprecated API(s) that are not found by this check?
-

Yes. The check can only be made by looking at the manifests shipped in the bundle. Your operator might be using the deprecated/removed API(s) but not shipping its manifests on the bundle or have a dependency on another operator that is using them.

-
2. What action(s) should I take?
- -
3. What does it mean for a package to be in amber or green?
- -
- -
-
Using deprecated APIs
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
dataset-operator -
    - -
  • Error: Value : (dataset-operator.v1.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplacecsidrivers.marketplace.redhat.com" "marketplacedatasets.marketplace.redhat.com" "marketplacedriverhealthchecks.marketplace.redhat.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dataset-operator.v1.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplacecsidrivers.marketplace.redhat.com" "marketplacedatasets.marketplace.redhat.com" "marketplacedriverhealthchecks.marketplace.redhat.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
zoperator -
    - -
  • Error: Value : (zoperator.v0.3.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["appdefinitions.zadara.com" "applicationclones.zadara.com" "applicationsnapshots.zadara.com" "cloneconfigurations.zadara.com" "invokers.zadara.com" "snapshotconfigurations.zadara.com" "snapshotpolicies.zadara.com" "vpsas.zadara.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value zoperator.v0.3.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["appdefinitions.zadara.com" "applicationclones.zadara.com" "applicationsnapshots.zadara.com" "cloneconfigurations.zadara.com" "invokers.zadara.com" "snapshotconfigurations.zadara.com" "snapshotpolicies.zadara.com" "vpsas.zadara.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ibm-tas -
    - -
  • Error: Value : (ibm-tas.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["tririgas.tas.ibm.com"]),ClusterRole: (["ibm-tas-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-tas.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["tririgas.tas.ibm.com"]),ClusterRole: (["ibm-tas-metrics-reader"]),
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cic-operator-with-crds -
    - -
  • Error: Value : (citrix-api-gateway-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["authpolicies.citrix.com" "citrixingresscontrollers.charts.helm.k8s.io" "httproutes.citrix.com" "listeners.citrix.com" "ratelimits.citrix.com" "rewritepolicies.citrix.com" "vips.citrix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value citrix-api-gateway-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["authpolicies.citrix.com" "citrixingresscontrollers.charts.helm.k8s.io" "httproutes.citrix.com" "listeners.citrix.com" "ratelimits.citrix.com" "rewritepolicies.citrix.com" "vips.citrix.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
openshiftpipeline-operator -
    - -
  • Error: Value : (pipeline-operator.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftpipelines.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value pipeline-operator.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftpipelines.charts.helm.k8s.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
kpow-io-certified -
    - -
  • Error: Value : (kpow-io.v1.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kpows.kpow.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kpow-io.v1.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kpows.kpow.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • kpow-io.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
anaconda-team-edition -
    - -
  • Error: Value : (anaconda-team-edition.v6.1.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anacondateameditions.anaconda.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value anaconda-team-edition.v6.1.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anacondateameditions.anaconda.com"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
splunk-certified -
    - -
  • Error: Value : (splunk.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["indexerclusters.enterprise.splunk.com" "licensemasters.enterprise.splunk.com" "searchheadclusters.enterprise.splunk.com" "sparks.enterprise.splunk.com" "standalones.enterprise.splunk.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value splunk.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["indexerclusters.enterprise.splunk.com" "licensemasters.enterprise.splunk.com" "searchheadclusters.enterprise.splunk.com" "sparks.enterprise.splunk.com" "standalones.enterprise.splunk.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
model-builder-for-vision-certified -
    - -
  • Error: Value : (ibm-modelbuilder-for-vision.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["modelbuilders.modelbuilder.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-modelbuilder-for-vision.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["modelbuilders.modelbuilder.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ibm-spectrum-scale-csi -
    - -
  • Error: Value : (ibm-spectrum-scale-csi-operator.v2.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-spectrum-scale-csi-operator.v2.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"])
  • - -
  • Error: Value : (ibm-spectrum-scale-csi-operator.v2.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-spectrum-scale-csi-operator.v2.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"])
  • - -
  • Error: Value : (ibm-spectrum-scale-csi-operator.v2.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-spectrum-scale-csi-operator.v2.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiscaleoperators.csi.ibm.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
rapidbiz-operator-certified -
    - -
  • Error: Value : (rapidbiz-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["rapidbizs.api.rapidbiz.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value rapidbiz-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["rapidbizs.api.rapidbiz.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
wavefront-operator -
    - -
  • Error: Value : (wavefront-operator.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["wavefrontcollectors.wavefront.com" "wavefrontproxies.wavefront.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value wavefront-operator.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["wavefrontcollectors.wavefront.com" "wavefrontproxies.wavefront.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
eddi-operator-certified -
    - -
  • Error: Value : (eddi-operator.v1.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["eddioperators.labs.ai" "eddis.labs.ai"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value eddi-operator.v1.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["eddioperators.labs.ai" "eddis.labs.ai"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
hazelcast-jet-enterprise-operator -
    - -
  • Error: Value : (hazelcast-jet-enterprise-operator.v0.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjetenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-jet-enterprise-operator.v0.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjetenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-jet-enterprise-operator.v0.1.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjetenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-jet-enterprise-operator.v0.1.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjetenterprises.hazelcast.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-jet-enterprise-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
behavior-analytics-services-operator-certified -
    - -
  • Warning: Value behavior-analytics-services-operator-certified.v1.1.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"])
  • - -
  • Error: Value : (behavior-analytics-services-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value behavior-analytics-services-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"])
  • - -
  • Warning: Value behavior-analytics-services-operator-certified.v1.1.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"])
  • - -
  • Warning: Value behavior-analytics-services-operator-certified.v1.1.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"])
  • - -
  • Error: Value : (behavior-analytics-services-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value behavior-analytics-services-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.bas.ibm.com" "analyticsproxies.bas.ibm.com" "dashboards.bas.ibm.com" "deleteclusters.bas.ibm.com" "fulldeployments.bas.ibm.com" "generatekeys.bas.ibm.com" "storeforwardmetrics.bas.ibm.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • behavior-analytics-services-operator-certified.v1.1.1 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • behavior-analytics-services-operator-certified.v1.1.2 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • behavior-analytics-services-operator-certified.v1.1.3 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
erynis-operator -
    - -
  • Error: Value : (erynis-operator.v0.2.35) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanas.monitoring.elostech.cz" "pushgateways.monitoring.elostech.cz" "thanos.monitoring.elostech.cz" "thanosreceives.monitoring.elostech.cz"]) or provide compatible version(s) by using the com.redhat.openshift.versions annotation in `metadata/annotations.yaml` to ensure that the index image will be geneared with its label. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value erynis-operator.v0.2.35: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanas.monitoring.elostech.cz" "pushgateways.monitoring.elostech.cz" "thanos.monitoring.elostech.cz" "thanosreceives.monitoring.elostech.cz"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • erynis-operator.v0.2.35 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
nsx-container-plugin-operator -
    - -
  • Error: Value : (nsx-container-plugin-operator.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ncpinstalls.operator.nsx.vmware.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nsx-container-plugin-operator.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ncpinstalls.operator.nsx.vmware.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
open-enterprise-spinnaker -
    - -
  • Error: Value : (spinnaker-operator.v1.21.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["spinnakeroperators.charts.helm.k8s.io.opsmx.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value spinnaker-operator.v1.21.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["spinnakeroperators.charts.helm.k8s.io.opsmx.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
openunison-ocp-certified -
    - -
  • Error: Value : (openunison.1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openunisons.openunison.tremolo.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value openunison.1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openunisons.openunison.tremolo.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
blackduck-connector-operator -
    - -
  • Error: Value : (blackduck-connector-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["blackduckconnectors.charts.synopsys.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value blackduck-connector-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["blackduckconnectors.charts.synopsys.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
densify-operator -
    - -
  • Error: Value : (densify-operator.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value densify-operator.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"])
  • - -
  • Error: Value : (densify-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value densify-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"])
  • - -
  • Error: Value : (densify-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value densify-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["densifies.densify.com"])
  • - -
-
-
    - -
  • v1.0
  • - -
  • alpha
  • - -
-
-
    - -
  • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cnvrg-operator-marketplace -
    - -
  • Error: Value : (cnvrg-operator.v0.352.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cnvrgapps.mlops.cnvrg.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cnvrg-operator.v0.352.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cnvrgapps.mlops.cnvrg.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ivory-server-app -
    - -
  • Error: Value : (ivory-server-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ivoryservers.ivoryserver.gtsoftware.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ivory-server-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ivoryservers.ivoryserver.gtsoftware.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
oneagent-certified -
    - -
  • Error: Value : (dynatrace-monitoring.v0.9.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.9.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.10.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.10.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.9.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.9.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.9.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.9.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.9.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.9.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.9.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.9.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
  • Error: Value : (dynatrace-monitoring.v0.8.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dynatrace-monitoring.v0.8.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • dynatrace-monitoring.v0.10.1 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.8.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.9.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.9.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.9.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.9.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dynatrace-monitoring.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
bacula-operator2 -
    - -
  • Error: Value : (bacula-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["baculae.bacula.baculasystems"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value bacula-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["baculae.bacula.baculasystems"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
transform-adv-operator -
    - -
  • Error: Value : (ta-operator.v2.3.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ta-operator.v2.3.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"])
  • - -
  • Error: Value : (ta-operator.v2.3.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ta-operator.v2.3.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"])
  • - -
  • Error: Value : (ta-operator.v2.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ta-operator.v2.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"])
  • - -
  • Error: Value : (ta-operator.v2.3.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ta-operator.v2.3.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"])
  • - -
  • Error: Value : (ta-operator.v2.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ta-operator.v2.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["transadvs.charts.ta.cloud.ibm.com"])
  • - -
-
-
    - -
  • v2.3
  • - -
  • stable
  • - -
-
-
    - -
  • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable v2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • ta-operator.v2.3.1 - (label=v4.5,v4.6,max=4.8,channels=[v2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ta-operator.v2.3.2 - (label=v4.5,v4.6,max=4.8,channels=[v2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ta-operator.v2.3.3 - (label=v4.5,v4.6,max=4.8,channels=[v2.3],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ta-operator.v2.3.4 - (label=v4.5,v4.6,max=4.8,channels=[v2.3],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
aci-containers-operator -
    - -
  • Error: Value : (aci-containers-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["acicontainersoperators.aci.ctrl"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aci-containers-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["acicontainersoperators.aci.ctrl"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
uma-operator -
    - -
  • Warning: Value uma-operator.v21.11.1-20: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["universalmonitoringagents.ca.broadcom.com"])
  • - -
-
-
    - -
  • alpha
  • - -
  • beta
  • - -
-
-
    - -
  • uma-operator.v21.11.1-20 - (label=v4.6-v4.8,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
snyk-operator-certified -
    - -
  • Error: Value : (snyk-operator-certified.v1.40.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["snyk-monitor-metrics-reader"]),CRD: (["snykmonitors.charts.snyk.io"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value snyk-operator-certified.v1.40.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["snyk-monitor-metrics-reader"]),CRD: (["snykmonitors.charts.snyk.io"]),
  • - -
  • Warning: Value snyk-operator-certified.v1.40.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["snykmonitors.charts.snyk.io"]),ClusterRole: (["snyk-monitor-metrics-reader"]),
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
synopsys-certified -
    - -
  • Error: Value : (synopsys-operator.2019.8.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alerts.synopsys.com" "blackducks.synopsys.com" "opssights.synopsys.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value synopsys-operator.2019.8.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alerts.synopsys.com" "blackducks.synopsys.com" "opssights.synopsys.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
here-service-operator-certified -
    - -
  • Error: Value : (hls-service-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hlsservices.here.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hls-service-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hlsservices.here.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cyberarmor-operator-certified -
    - -
  • Error: Value : (cyberarmor-operator.0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cyberarmornamespaces.apm.cyberarmor.com" "cyberarmors.apm.cyberarmor.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cyberarmor-operator.0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cyberarmornamespaces.apm.cyberarmor.com" "cyberarmors.apm.cyberarmor.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
bigid-operator -
    - -
  • Error: Value : (bigid-operator.v1.1.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["bigid-metrics-reader" "bigid-operator-metrics-reader"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value bigid-operator.v1.1.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["bigid-metrics-reader" "bigid-operator-metrics-reader"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • bigid-operator.v1.1.6 - (label=v4.6-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ibm-block-csi-operator -
    - -
  • Error: Value : (ibm-block-csi-operator.v1.5.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-block-csi-operator.v1.5.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"])
  • - -
  • Error: Value : (ibm-block-csi-operator.v1.4.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-block-csi-operator.v1.4.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"])
  • - -
  • Error: Value : (ibm-block-csi-operator.v1.5.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-block-csi-operator.v1.5.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"])
  • - -
  • Error: Value : (ibm-block-csi-operator.v1.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-block-csi-operator.v1.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmblockcsis.csi.ibm.com"])
  • - -
-
-
    - -
  • maintenance-1.5
  • - -
  • stable
  • - -
-
-
    - -
  • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable maintenance-1.5],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • ibm-block-csi-operator.v1.5.1 - (label=v4.6-v4.7,max=4.8,channels=[maintenance-1.5],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
appdynamics-operator -
    - -
  • Error: Value : (appdynamics-operator.v0.6.11) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["adams.appdynamics.com" "clusteragents.appdynamics.com" "clustercollectors.appdynamics.com" "hostcollectors.appdynamics.com" "infravizs.appdynamics.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value appdynamics-operator.v0.6.11: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["adams.appdynamics.com" "clusteragents.appdynamics.com" "clustercollectors.appdynamics.com" "hostcollectors.appdynamics.com" "infravizs.appdynamics.com"])
  • - -
  • Error: Value : (appdynamics-operator.v0.6.12) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["adams.appdynamics.com" "clusteragents.appdynamics.com" "clustercollectors.appdynamics.com" "hostcollectors.appdynamics.com" "infravizs.appdynamics.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value appdynamics-operator.v0.6.12: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["adams.appdynamics.com" "clusteragents.appdynamics.com" "clustercollectors.appdynamics.com" "hostcollectors.appdynamics.com" "infravizs.appdynamics.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • appdynamics-operator.v0.6.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • appdynamics-operator.v0.6.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
atomicorp-helm-operator-certified -
    - -
  • Error: Value : (atomicorp-helm-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["atomicorps.atomicorp.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value atomicorp-helm-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["atomicorps.atomicorp.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
robin-storage-trial -
    - -
  • Error: Value : (robin-storage-trial.v5.3.4-156) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["robinclusters.manage.robin.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value robin-storage-trial.v5.3.4-156: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["robinclusters.manage.robin.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • robin-storage-trial.v5.3.4-156 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
mf-cics-tg-operator -
    - -
  • Error: Value : (mf-cics-tg-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mf-cics-tgs.openlegacy.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mf-cics-tg-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mf-cics-tgs.openlegacy.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
armory-operator -
    - -
  • Error: Value : (armory-operator.v1.2.0-ubi) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["spinnakerservices.spinnaker.armory.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value armory-operator.v1.2.0-ubi: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["spinnakerservices.spinnaker.armory.io"])
  • - -
-
-
    - -
  • v1alpha2
  • - -
-
-
    - -
  • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
xspc-operator -
    - -
  • Warning: Value xspc-csi-driver-operator.1.8.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xspcs.csi.hpe.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • xspc-csi-driver-operator.1.8.0 - (label=v4.6-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cortex-certifai-operator -
    - -
  • Error: Value : (cortex-certifai-operator.v1.3.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-certifai-operator.v1.3.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-certifai-operator.v1.3.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-certifai-operator.v1.3.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-certifai-operator.v1.3.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-certifai-operator.v1.3.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-certifai-operator.v1.3.10) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-certifai-operator.v1.3.10: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-certifai-operator.v1.3.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-certifai-operator.v1.3.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certifais.cortex.cognitivescale.com" "certifaiscans.cortex.cognitivescale.com"])
  • - -
-
-
    - -
  • stable
  • - -
  • beta
  • - -
-
-
    - -
  • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[stable beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
insightedge-enterprise-operator2 -
    - -
  • Error: Value : (insightedge-enterprise-operator.v15.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["insightedges.insightedge.gigaspaces.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value insightedge-enterprise-operator.v15.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["insightedges.insightedge.gigaspaces.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
alcide-kaudit-operator -
    - -
  • Error: Value : (alcide-kaudit-operator.v0.0.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kaudits.kaudit.alcide.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value alcide-kaudit-operator.v0.0.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kaudits.kaudit.alcide.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
infrastructure-asset-orchestrator-certified -
    - -
  • Error: Value : (infrastructure-asset-orchestrator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["generatekeys.infrastructure.asset.orchestrator.com" "mb-broker-services.infrastructure.asset.orchestrator.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value infrastructure-asset-orchestrator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["generatekeys.infrastructure.asset.orchestrator.com" "mb-broker-services.infrastructure.asset.orchestrator.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cortex-fabric-operator -
    - -
  • Error: Value : (cortex-fabric-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cortex5s.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-fabric-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cortex5s.charts.helm.k8s.io"])
  • - -
  • Error: Value : (cortex-fabric-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cortex5s.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-fabric-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cortex5s.charts.helm.k8s.io"])
  • - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
  • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-fabric-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cert-manager-operator -
    - -
  • Error: Value : (cert-manager-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certmanagers.operator.cert-manager.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cert-manager-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certmanagers.operator.cert-manager.io"])
  • - -
  • Error: Value : (cert-manager-operator.v0.15.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certmanagers.operator.cert-manager.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cert-manager-operator.v0.15.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certmanagers.operator.cert-manager.io"])
  • - -
-
-
    - -
  • stable
  • - -
  • alpha
  • - -
-
-
    - -
  • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • cert-manager-operator.v0.15.3 - (label=,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
seldon-operator-certified -
    - -
  • Error: Value : (seldon-operator.v1.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.5.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.5.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldonoperator.v0.1.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldonoperator.v0.1.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.6.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.6.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
  • Error: Value : (seldon-operator.v1.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-operator.v1.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeployments.machinelearning.seldon.io"])
  • - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
  • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • seldon-operator.v1.7.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
growth-stack-operator-certified -
    - -
  • Error: Value : (growth-stack-operator.v2.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.growth-stack.operator.com" "analyticsproxies.growth-stack.operator.com" "deleteclusters.growth-stack.operator.com" "fulldeployments.growth-stack.operator.com" "generatekeys.growth-stack.operator.com" "storeforwardmetrics.growth-stack.operator.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value growth-stack-operator.v2.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.growth-stack.operator.com" "analyticsproxies.growth-stack.operator.com" "deleteclusters.growth-stack.operator.com" "fulldeployments.growth-stack.operator.com" "generatekeys.growth-stack.operator.com" "storeforwardmetrics.growth-stack.operator.com"])
  • - -
  • Error: Value : (growth-stack-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.growth-stack.operator.com" "analyticsproxies.growth-stack.operator.com" "deleteclusters.growth-stack.operator.com" "generatekeys.growth-stack.operator.com" "growthstacksuites.growth-stack.operator.com" "storeforwardmetrics.growth-stack.operator.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value growth-stack-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["airgappeddeployments.growth-stack.operator.com" "analyticsproxies.growth-stack.operator.com" "deleteclusters.growth-stack.operator.com" "generatekeys.growth-stack.operator.com" "growthstacksuites.growth-stack.operator.com" "storeforwardmetrics.growth-stack.operator.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • growth-stack-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
traefikee-redhat-certified -
    - -
  • Error: Value : (traefikee-redhat-certified.v2.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["traefikees.containo.us"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value traefikee-redhat-certified.v2.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["traefikees.containo.us"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
nvmesh-operator -
    - -
  • Error: Value : (nvmesh-operator.0.7.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nvmeshes.nvmesh.excelero.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nvmesh-operator.0.7.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nvmeshes.nvmesh.excelero.com"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
hedvig-operator -
    - -
  • Error: Value : (hedvig-operator.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hedvigdeploys.hedvig.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hedvig-operator.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hedvigdeploys.hedvig.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
joget-openshift-operator -
    - -
  • Error: Value : (joget-openshift-operator.v0.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["joget.app.joget.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value joget-openshift-operator.v0.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["joget.app.joget.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
tf-operator -
    - -
  • Error: Value : (tf-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sdns.tungsten.atsgen.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tf-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sdns.tungsten.atsgen.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
kube-arangodb -
    - -
  • Error: Value : (kube-arangodb.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["arangobackuppolicies.backup.arangodb.com" "arangobackups.backup.arangodb.com" "arangodeploymentreplications.replication.database.arangodb.com" "arangodeployments.database.arangodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kube-arangodb.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["arangobackuppolicies.backup.arangodb.com" "arangobackups.backup.arangodb.com" "arangodeploymentreplications.replication.database.arangodb.com" "arangodeployments.database.arangodb.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
instana-agent -
    - -
  • Error: Value : (instana-agent-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.2.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.2.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v1.0.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v1.0.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v1.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v1.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.2.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.2.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v1.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v1.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.10) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.10: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
  • Error: Value : (instana-agent-operator.v0.3.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value instana-agent-operator.v0.3.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["agents.instana.io"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.2.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v0.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
falco-certified -
    - -
  • Error: Value : (falco-operator.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["falcos.falco.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value falco-operator.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["falcos.falco.org"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
appsody-operator-certified -
    - -
  • Error: Value : (appsody-operator.v0.6.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["appsodyapplications.appsody.dev"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value appsody-operator.v0.6.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["appsodyapplications.appsody.dev"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cass-operator -
    - -
  • Error: Value : (cass-operator.v1.5.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.5.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.5.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.5.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.4.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.4.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
  • Error: Value : (cass-operator.v1.4.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cass-operator.v1.4.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandradatacenters.cassandra.datastax.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • cass-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cass-operator.v1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
db2-zos-db-operator -
    - -
  • Error: Value : (db2-zos-db-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["db2-zos-dbs.openlegacy.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value db2-zos-db-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["db2-zos-dbs.openlegacy.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
coralogix-operator-certified -
    - -
  • Error: Value : (coralogix-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["coralogixloggers.loggers.coralogix.com"]),ClusterRole: (["coralogix-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value coralogix-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["coralogixloggers.loggers.coralogix.com"]),ClusterRole: (["coralogix-operator-metrics-reader"]),
  • - -
  • Warning: Value coralogix-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["coralogix-operator-metrics-reader"]),CRD: (["coralogixloggers.loggers.coralogix.com"]),
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
robin-storage-express -
    - -
  • Error: Value : (robin-storage-express.v5.3.4-156-3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["robinclusters.manage.robin.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value robin-storage-express.v5.3.4-156-3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["robinclusters.manage.robin.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
sematext -
    - -
  • Error: Value : (sematext-operator.v1.0.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sematextagents.sematext.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value sematext-operator.v1.0.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sematextagents.sematext.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
orca -
    - -
  • Error: Value : (orca-operator.v1.0.195) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value orca-operator.v1.0.195: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"])
  • - -
  • Error: Value : (orca-operator.v1.0.197) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value orca-operator.v1.0.197: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"])
  • - -
  • Error: Value : (orca-operator.v1.0.193) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value orca-operator.v1.0.193: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["orcas.tufin.io" "policies.networking.tufin.io"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • orca-operator.v1.0.193 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • orca-operator.v1.0.195 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • orca-operator.v1.0.197 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
presto-operator -
    - -
  • Error: Value : (starburst-presto-helm-operator.v350.1.1-ubi) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starbursthives.charts.starburstdata.com" "starburstprestoes.charts.starburstdata.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value starburst-presto-helm-operator.v350.1.1-ubi: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starbursthives.charts.starburstdata.com" "starburstprestoes.charts.starburstdata.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
optimize-controller -
    - -
  • Error: Value : (optimize-controller.v2.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["experiments.optimize.stormforge.io" "trials.optimize.stormforge.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value optimize-controller.v2.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["experiments.optimize.stormforge.io" "trials.optimize.stormforge.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • optimize-controller.v2.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
stonebranch-universalagent-operator-certified -
    - -
  • Error: Value : (universalagent-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["stonebranches.agent.stonebranch.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value universalagent-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["stonebranches.agent.stonebranch.com"])
  • - -
  • Error: Value : (universalagent-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["stonebranches.agent.stonebranch.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value universalagent-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["stonebranches.agent.stonebranch.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • universalagent-operator.v1.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cortex-healthcare-hub-operator -
    - -
  • Error: Value : (cortex-healthcare-hub-operator.v0.0.24) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-healthcare-hub-operator.v0.0.24: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-healthcare-hub-operator.v0.0.25) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-healthcare-hub-operator.v0.0.25: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-healthcare-hub-operator.v0.0.25 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
data-explorer-operator-certified -
    - -
  • Error: Value : (data-explorer-operator.v0.1.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.10) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.10: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterlabs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.1.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.1.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
  • Error: Value : (data-explorer-operator.v0.0.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value data-explorer-operator.v0.0.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dashboardwithjupyterhubs.data-explorer.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • data-explorer-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.0.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • data-explorer-operator.v0.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ako-operator -
    - -
  • Error: Value : (ako-operator.v1.4.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["akoconfigs.ako.vmware.com"]),ClusterRole: (["ako-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ako-operator.v1.4.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["akoconfigs.ako.vmware.com"]),ClusterRole: (["ako-operator-metrics-reader"]),
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
k10-kasten-operator -
    - -
  • Error: Value : (k10-kasten-operator.4.0.5003) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k10-kasten-operator.4.0.5003: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
  • Error: Value : (k10-kasten-operator.3.0.11) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k10-kasten-operator.3.0.11: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
  • Warning: Value k10-kasten-operator.4.5.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
  • Error: Value : (k10-kasten-operator.4.0.6000) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k10-kasten-operator.4.0.6000: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
  • Error: Value : (k10-helm-operator.2.5.18) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k10-helm-operator.2.5.18: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
  • Error: Value : (k10-kasten-operator.3.0.11007) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k10-kasten-operator.3.0.11007: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["k10s.apik10.kasten.io"])
  • - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
  • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • k10-kasten-operator.4.5.2 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
hspc-operator -
    - -
  • Warning: Value hspc-operator.v1.8.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hspcs.csi.hitachi.com"])
  • - -
  • Error: Value : (hspc-operator.v1.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hspcs.csi.hitachi.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hspc-operator.v1.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hspcs.csi.hitachi.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • hspc-operator.v1.7.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hspc-operator.v1.8.0 - (label=v4.6-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
yugabyte-operator -
    - -
  • Error: Value : (yugabyte-operator.v0.9.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ybclusters.yugabyte.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value yugabyte-operator.v0.9.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ybclusters.yugabyte.com"])
  • - -
-
-
    - -
  • alpha
  • - -
  • beta
  • - -
-
-
    - -
  • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
jtrac-app-operator -
    - -
  • Error: Value : (jtrac-app-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jtracs.example.com"]),ClusterRole: (["jtrac-app-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value jtrac-app-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jtracs.example.com"]),ClusterRole: (["jtrac-app-operator-metrics-reader"]),
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
kubeplus -
    - -
  • Error: Value : (kubeplus.v1.0.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["resourcecompositions.workflows.kubeplus" "resourceevents.workflows.kubeplus" "resourcemonitors.workflows.kubeplus" "resourcepolicies.workflows.kubeplus"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeplus.v1.0.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["resourcecompositions.workflows.kubeplus" "resourceevents.workflows.kubeplus" "resourcemonitors.workflows.kubeplus" "resourcepolicies.workflows.kubeplus"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
appranix-cps -
    - -
  • Error: Value : (appranix.v2.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupstoragelocations.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value appranix.v2.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupstoragelocations.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"])
  • - -
  • Error: Value : (appranix-operator.v2.5.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupstoragelocations.aps.appranix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value appranix-operator.v2.5.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupstoragelocations.aps.appranix.com"])
  • - -
-
-
    - -
  • deprecated
  • - -
  • stable
  • - -
-
-
    - -
  • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
-
vprotect-operator -
    - -
  • Error: Value : (vprotect-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value vprotect-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"])
  • - -
  • Error: Value : (vprotect-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value vprotect-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"])
  • - -
  • Error: Value : (vprotect-operator.v0.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value vprotect-operator.v0.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vprotectdbservernodes.vprotect.storware.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • vprotect-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • vprotect-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
perceptilabs-operator-package -
    - -
  • Error: Value : (perceptilabs-operator.v1.0.16) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value perceptilabs-operator.v1.0.16: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"])
  • - -
  • Error: Value : (perceptilabs-operator.v1.0.21) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value perceptilabs-operator.v1.0.21: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"])
  • - -
  • Error: Value : (perceptilabs-operator.v1.0.20) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value perceptilabs-operator.v1.0.20: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perceptilabs.perceptilabs.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • perceptilabs-operator.v1.0.20 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • perceptilabs-operator.v1.0.21 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
akka-cluster-operator-certified -
    - -
  • Error: Value : (akka-cluster-operator-certified.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["akkaclusters.app.lightbend.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value akka-cluster-operator-certified.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["akkaclusters.app.lightbend.com"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
mf-cics-ts-operator -
    - -
  • Error: Value : (mf-cics-ts-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mf-cics-tss.openlegacy.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mf-cics-ts-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mf-cics-tss.openlegacy.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
portshift-controller-operator -
    - -
  • Error: Value : (portshift-operator.v0.1.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["portshiftinstallers.portshift.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value portshift-operator.v0.1.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["portshiftinstallers.portshift.io"])
  • - -
  • Error: Value : (portshift-operator.v0.1.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["portshiftinstallers.portshift.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value portshift-operator.v0.1.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["portshiftinstallers.portshift.io"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • portshift-operator.v0.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
fp-predict-plus-operator-certified -
    - -
  • Error: Value : (fp-predict-plus-operator.v0.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fppredictplus.apm.fp-predict-plus.findabilityplatform.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fp-predict-plus-operator.v0.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fppredictplus.apm.fp-predict-plus.findabilityplatform.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
as400rpc-operator -
    - -
  • Error: Value : (as400rpc-operator.v1.1.16) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["as400rpcs.openlegacy.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value as400rpc-operator.v1.1.16: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["as400rpcs.openlegacy.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • as400rpc-operator.v1.1.16 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
h2o-operator -
    - -
  • Error: Value : (h2o-operator.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["h2os.h2o.ai"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value h2o-operator.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["h2os.h2o.ai"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
cortex-hub-operator -
    - -
  • Error: Value : (cortex-hub-operator.v0.0.25) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-hub-operator.v0.0.25: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"])
  • - -
  • Error: Value : (cortex-hub-operator.v0.0.24) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cortex-hub-operator.v0.0.24: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hubs.hubs.cortex.cognitivescale.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • cortex-hub-operator.v0.0.25 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
nspc-operator -
    - -
  • Error: Value : (nspc-operator.v1.6.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nspcs.csi.nec.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nspc-operator.v1.6.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nspcs.csi.nec.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • nspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
redis-enterprise-operator-cert -
    - -
  • Error: Value : (redis-enterprise-operator.v6.0.12-5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.12-5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.20-4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.20-4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator-preview.v6.0.20-12) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator-preview.v6.0.20-12: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.6-24) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.6-24: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Warning: Value redis-enterprise-operator.v6.2.8-2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.6-11) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.6-11: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.6-6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.6-6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.2.4-1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.2.4-1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.8-20) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.8-20: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.8-1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.8-1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v5.4.14-7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v5.4.14-7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com"])
  • - -
  • Error: Value : (redis-enterprise-operator.v6.0.20-12a) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value redis-enterprise-operator.v6.0.20-12a: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["redisenterpriseclusters.app.redislabs.com" "redisenterprisedatabases.app.redislabs.com"])
  • - -
-
-
    - -
  • production
  • - -
  • 6.0.20
  • - -
  • 6.2.8
  • - -
  • 6.2.4
  • - -
  • 6.0.12
  • - -
  • preview
  • - -
  • 6.0.8
  • - -
  • 6.0.6
  • - -
  • 5.4.14
  • - -
-
-
    - -
  • redis-enterprise-operator-preview.v6.0.20-12 - (label=v4.5,max=4.8,channels=[preview],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • redis-enterprise-operator.v5.4.14-7 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 5.4.14 6.2.8 6.0.8 6.2.4 6.0.12 6.0.6],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.12-5 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.2.4 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[production 6.0.20 6.2.8 6.2.4],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.2.4],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.0.8 6.2.4 6.0.12 6.0.6],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.6-24 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.0.8 6.2.4 6.0.12 6.0.6],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.6-6 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.0.8 6.2.4 6.0.12 6.0.6],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.8-1 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.0.8 6.2.4 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20 6.2.8 6.0.8 6.2.4 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.2.4-1 - (label=v4.5,max=4.8,channels=[production 6.2.8 6.2.4],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • redis-enterprise-operator.v6.2.8-2 - (label=v4.6-v4.8,max=4.8,channels=[production 6.2.8],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
ibm-mq-operator -
    - -
  • Error: Value : (ibm-mq-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibm-mqs.openlegacy.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ibm-mq-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibm-mqs.openlegacy.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
memql-certified -
    - -
  • Error: Value : (memsql-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
  • Error: Value : (memsql-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
  • Error: Value : (memsql-operator.v0.0.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v0.0.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
  • Error: Value : (memsql-operator.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
  • Error: Value : (memsql-operator.v1.1.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v1.1.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
  • Error: Value : (memsql-operator.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value memsql-operator.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["memsqlclusters.memsql.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • memsql-operator.v0.0.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • memsql-operator.v0.0.3 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • memsql-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • memsql-operator.v1.1.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • memsql-operator.v1.1.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • memsql-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
rocketchat-operator-certified -
    - -
  • Error: Value : (rocketchat-operator.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["rocketchats.open.rocket.chat"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value rocketchat-operator.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["rocketchats.open.rocket.chat"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
-
-
- -
-
Has a bundle that we could not find the deprecate APIs
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
cloud-native-postgresql -
    - -
  • Error: Value : (cloud-native-postgresql.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.postgresql.k8s.enterprisedb.io" "clusters.postgresql.k8s.enterprisedb.io" "scheduledbackups.postgresql.k8s.enterprisedb.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value cloud-native-postgresql.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.postgresql.k8s.enterprisedb.io" "clusters.postgresql.k8s.enterprisedb.io" "scheduledbackups.postgresql.k8s.enterprisedb.io"])
  • - -
-
-
    - -
  • alpha
  • - -
  • beta
  • - -
  • stable
  • - -
-
-
    - -
  • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • cloud-native-postgresql.v1.11.0 - (label=v4.6-v4.9,max=4.9,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
fep-ansible-operator -
    - -
  • Error: Value : (fujitsu-enterprise-operator.v2.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fujitsu-enterprise-operator.v2.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"])
  • - -
  • Error: Value : (fujitsu-enterprise-operator.v2.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fujitsu-enterprise-operator.v2.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"])
  • - -
  • Error: Value : (fujitsu-enterprise-operator.v2.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fujitsu-enterprise-operator.v2.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"])
  • - -
  • Error: Value : (fujitsu-enterprise-operator.v2.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fujitsu-enterprise-operator.v2.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"])
  • - -
  • Error: Value : (fujitsu-enterprise-operator.v2.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value fujitsu-enterprise-operator.v2.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["fepactions.fep.fujitsu.io" "fepbackups.fep.fujitsu.io" "fepcerts.fep.fujitsu.io" "fepclusters.fep.fujitsu.io" "fepconfigs.fep.fujitsu.io" "feppgpool2certs.fep.fujitsu.io" "feppgpool2s.fep.fujitsu.io" "feprestores.fep.fujitsu.io" "fepusers.fep.fujitsu.io" "fepvolumes.fep.fujitsu.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v2.2.1 - (label=v4.5-v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v2.2.2 - (label=v4.5-v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • fep-ansible-operator.v2.2.3 - (label=v4.5-v4.8,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fep-ansible-operator.v2.2.4 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
jinhli-demo-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • jinhli-operator.v0.0.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
installkit-customer -
    - -
-
-
    - -
  • preview
  • - -
  • fast
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
fujitsu-enterprise-operator -
    - -
-
-
    - -
  • beta
  • - -
  • stable-13
  • - -
-
-
    - -
-
-
    - -
  • fujitsu-enterprise-operator.v3.0.0 - (label=v4.6-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v3.1.0 - (label=v4.6-v4.7,max=not set,channels=[stable-13],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • fujitsu-enterprise-operator.v3.1.1 - (label=v4.6-v4.8,max=not set,channels=[stable-13],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nethopper-operator -
    - -
-
-
    - -
  • beta
  • - -
-
-
    - -
-
-
    - -
  • nethopper-operator.v0.1.32 - (label=v4.6-v4.8,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
hazelcast-enterprise-certified -
    - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.4-1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.4-1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
  • Error: Value : (hazelcast-enterprise-operator.v0.3.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value hazelcast-enterprise-operator.v0.3.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastenterprises.hazelcast.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • hazelcast-enterprise-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.4-1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • hazelcast-enterprise-operator.v0.3.8 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
splunk-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • splunk-operator.v1.0.3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
openshiftxray-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • xray-operator.v2.0.9 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
redhat-marketplace-operator -
    - -
-
-
    - -
  • beta
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • redhat-marketplace-operator.v2.5.0 - (label=v4.6-v4.9,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
cilium -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • cilium.v1.10.4-x5bfd7b3 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
anchore-engine -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • anchore-engine.v1.0.1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
k8s-triliovault -
    - -
  • Error: Value : (k8s-triliovault-cluster.v2.0.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k8s-triliovault-cluster.v2.0.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"])
  • - -
  • Error: Value : (k8s-triliovault-cluster.v2.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k8s-triliovault-cluster.v2.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"])
  • - -
  • Error: Value : (k8s-triliovault-cluster.v2.0.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k8s-triliovault-cluster.v2.0.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"])
  • - -
  • Error: Value : (k8s-triliovault-cluster.v2.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k8s-triliovault-cluster.v2.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"])
  • - -
  • Error: Value : (k8s-triliovault-cluster.v2.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value k8s-triliovault-cluster.v2.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backupplans.triliovault.trilio.io" "backups.triliovault.trilio.io" "hooks.triliovault.trilio.io" "licenses.triliovault.trilio.io" "policies.triliovault.trilio.io" "restores.triliovault.trilio.io" "targets.triliovault.trilio.io"])
  • - -
-
-
    - -
  • cluster
  • - -
  • namespaced
  • - -
  • stable
  • - -
-
-
    - -
  • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k8s-triliovault-cluster.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • k8s-triliovault-cluster.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • k8s-triliovault-stable.2.6.3 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • k8s-triliovault-stable.2.6.4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
workload-manager-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • workload-manager-operator.v1.3.1 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
kong-offline-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • kong.v0.10.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
hello-world-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • hello-world-operator.0.0.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
couchbase-enterprise-certified -
    - -
  • Error: Value : (couchbase-operator.v2.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseautoscalers.couchbase.com" "couchbasebackuprestores.couchbase.com" "couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbaseephemeralbuckets.couchbase.com" "couchbasegroups.couchbase.com" "couchbasememcachedbuckets.couchbase.com" "couchbasereplications.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v2.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseautoscalers.couchbase.com" "couchbasebackuprestores.couchbase.com" "couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbaseephemeralbuckets.couchbase.com" "couchbasegroups.couchbase.com" "couchbasememcachedbuckets.couchbase.com" "couchbasereplications.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"])
  • - -
  • Error: Value : (couchbase-operator.v2.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbasegroups.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v2.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbasegroups.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"])
  • - -
  • Error: Value : (couchbase-operator.v2.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackuprestores.couchbase.com" "couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbaseephemeralbuckets.couchbase.com" "couchbasegroups.couchbase.com" "couchbasememcachedbuckets.couchbase.com" "couchbasereplications.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v2.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackuprestores.couchbase.com" "couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbaseephemeralbuckets.couchbase.com" "couchbasegroups.couchbase.com" "couchbasememcachedbuckets.couchbase.com" "couchbasereplications.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"])
  • - -
  • Error: Value : (couchbase-operator.v2.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbasegroups.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v2.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbasebackups.couchbase.com" "couchbasebuckets.couchbase.com" "couchbaseclusters.couchbase.com" "couchbasegroups.couchbase.com" "couchbaserolebindings.couchbase.com" "couchbaseusers.couchbase.com"])
  • - -
  • Error: Value : (couchbase-operator.v1.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseclusters.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v1.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseclusters.couchbase.com"])
  • - -
  • Error: Value : (couchbase-operator.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseclusters.couchbase.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchbase-operator.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["couchbaseclusters.couchbase.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • couchbase-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v1.2.2 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v2.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v2.0.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • couchbase-operator.v2.2.1-1 - (label=v4.6,v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
starburst-enterprise-helm-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • starburst-enterprise-helm-operator.v360.6.1 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
vfunction-server-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • vfunction-server-operator.v2.3.597 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
anzounstructured-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
elasticsearch-eck-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • elasticsearch-eck-operator-certified.1.9.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nxiq-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • nxiq-operator-certified.v1.131.0-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
minio-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
datadog-operator-certified -
    - -
  • Error: Value : (datadog-operator.v0.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["datadogagents.datadoghq.com" "datadogmetrics.datadoghq.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value datadog-operator.v0.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["datadogagents.datadoghq.com" "datadogmetrics.datadoghq.com"])
  • - -
-
-
    - -
  • beta
  • - -
  • alpha
  • - -
-
-
    - -
  • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • datadog-operator.v0.7.2 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
sumologic-kubernetes-collection-helm-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • sumologic-kubernetes-collection-helm-operator.v2.1.4-0 - (label=v4.6-v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
citrix-cpx-istio-sidecar-injector-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • citrix-cpx-istio-sidecar-injector-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
jianwei-test-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • jianwei-test-operator.v0.0.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
dell-csi-operator-certified -
    - -
  • Error: Value : (dell-csi-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiisilons.storage.dell.com" "csipowermaxes.storage.dell.com" "csipowermaxrevproxies.storage.dell.com" "csipowerstores.storage.dell.com" "csiunities.storage.dell.com" "csivxflexoses.storage.dell.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dell-csi-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiisilons.storage.dell.com" "csipowermaxes.storage.dell.com" "csipowermaxrevproxies.storage.dell.com" "csipowerstores.storage.dell.com" "csiunities.storage.dell.com" "csivxflexoses.storage.dell.com"])
  • - -
  • Error: Value : (dell-csi-operator-certified.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiisilons.storage.dell.com" "csipowermaxes.storage.dell.com" "csipowermaxrevproxies.storage.dell.com" "csipowerstores.storage.dell.com" "csiunities.storage.dell.com" "csivxflexoses.storage.dell.com"]),ClusterRole: (["dell-csi-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value dell-csi-operator-certified.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["dell-csi-operator-metrics-reader"]),CRD: (["csiisilons.storage.dell.com" "csipowermaxes.storage.dell.com" "csipowermaxrevproxies.storage.dell.com" "csipowerstores.storage.dell.com" "csiunities.storage.dell.com" "csivxflexoses.storage.dell.com"]),
  • - -
  • Warning: Value dell-csi-operator-certified.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["csiisilons.storage.dell.com" "csipowermaxes.storage.dell.com" "csipowermaxrevproxies.storage.dell.com" "csipowerstores.storage.dell.com" "csiunities.storage.dell.com" "csivxflexoses.storage.dell.com"]),ClusterRole: (["dell-csi-operator-metrics-reader"]),
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • dell-csi-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • dell-csi-operator-certified.v1.5.0 - (label=v4.6-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
pachyderm-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • pachyderm-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
neuvector-certified-operator -
    - -
  • Error: Value : (neuvector-operator.v1.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v0.9.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v0.9.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
  • Error: Value : (neuvector-operator.v1.2.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value neuvector-operator.v1.2.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["neuvectors.apm.neuvector.com"])
  • - -
-
-
    - -
  • beta
  • - -
-
-
    - -
  • neuvector-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • neuvector-operator.v1.2.9 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.3.0 - (label=v4.5,v4.6,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.3.1 - (label=v4.4,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • neuvector-operator.v1.3.2 - (label=v4.4,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
marketplace-games-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • marketplace-games-operator.v1.0.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
gpu-operator-certified -
    - -
  • Error: Value : (gpu-operator-certified.v1.5.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gpu-operator-certified.v1.5.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"])
  • - -
  • Error: Value : (gpu-operator-certified.v1.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gpu-operator-certified.v1.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"])
  • - -
  • Error: Value : (gpu-operator-certified.v1.4.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gpu-operator-certified.v1.4.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"])
  • - -
  • Error: Value : (gpu-operator-certified.v1.5.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gpu-operator-certified.v1.5.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"])
  • - -
  • Error: Value : (gpu-operator-certified.v1.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gpu-operator-certified.v1.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpolicies.nvidia.com"])
  • - -
-
-
    - -
  • stable
  • - -
  • v1.8
  • - -
  • v1.7
  • - -
-
-
    - -
  • gpu-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.5.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • gpu-operator-certified.v1.6.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.6.2 - (label=v4.6,v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.7.1 - (label=v4.6,v4.7,max=not set,channels=[v1.7],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
sysdig-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • sysdig-certified.v1.12.42 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
hpe-csi-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
node-red-operator-certified -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • node-red-operator-certified.v0.0.4 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
tc-simple-demo-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • tc-simple-demo-operator.v0.0.8 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
percona-postgresql-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • percona-postgresql-operator.v1.0.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
couchdb-operator-certified -
    - -
  • Error: Value : (couchdb-operator.v1.0.14) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.0.14: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.4.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.4.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v2.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v2.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.4.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.4.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.4.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.4.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.4.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.4.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.4.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.4.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v1.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v1.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
  • Error: Value : (couchdb-operator.v2.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value couchdb-operator.v2.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backups.couchdb.databases.cloud.ibm.com" "buckets.couchdb.databases.cloud.ibm.com" "couchdbclusters.couchdb.databases.cloud.ibm.com" "formationlocks.couchdb.databases.cloud.ibm.com" "formations.couchdb.databases.cloud.ibm.com" "recipes.couchdb.databases.cloud.ibm.com" "recipetemplates.couchdb.databases.cloud.ibm.com"])
  • - -
-
-
    - -
  • v1.0
  • - -
  • v2.2
  • - -
  • stable
  • - -
  • v1.4
  • - -
  • v1.3
  • - -
  • v2.0
  • - -
  • v2.1
  • - -
  • v1.2
  • - -
  • beta
  • - -
  • v1.1
  • - -
-
-
    - -
  • couchdb-operator.v1.0.14 - (label=v4.6,v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.1.0 - (label=v4.6,v4.5,max=4.8,channels=[beta v1.1],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[v1.2],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.4],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[v1.4],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[v2.0 v2.1],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • couchdb-operator.v2.0.1 - (label=v4.6-v4.8,max=4.8,channels=[v2.1],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • couchdb-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[v2.2 stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
confluent-for-kubernetes -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • confluent-for-kubernetes.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nastel-xray-operator -
    - -
  • Error: Value : (nastel-xray-operator.v1.324.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.324.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Warning: Value nastel-xray-operator.v1.324.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["nastel-xray-operator-metrics-reader"]),CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),
  • - -
  • Error: Value : (nastel-xray-operator.v1.323.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.323.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-xray-operator.v1.325.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.325.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-xray-operator.v1.324.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.324.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-xray-operator.v1.324.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["nastel-xray-operator-metrics-reader"]),CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.324.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Warning: Value nastel-xray-operator.v1.324.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["nastel-xray-operator-metrics-reader"]),CRD: (["nastelxrays.xray.nastel.com" "nastelxraytopologies.xray.nastel.com"]),
  • - -
  • Error: Value : (nastel-xray-operator.v1.323.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-xray-operator.v1.323.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelxrays.xray.nastel.com"]),ClusterRole: (["nastel-xray-operator-metrics-reader"]),
  • - -
  • Warning: Value nastel-xray-operator.v1.323.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["nastel-xray-operator-metrics-reader"]),CRD: (["nastelxrays.xray.nastel.com"]),
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • nastel-xray-operator.v1.323.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.323.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.324.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.324.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.324.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.325.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • nastel-xray-operator.v1.330.0 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-xray-operator.v1.330.1 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
acc-operator -
    - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • acc-operator.v21.10.19 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • acc-operator.v21.10.7 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
sriov-fec -
    - -
  • Error: Value : (sriov-fec.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sriovfecclusterconfigs.sriovfec.intel.com" "sriovfecnodeconfigs.sriovfec.intel.com"]),ClusterRole: (["sriov-fec-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value sriov-fec.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sriovfecclusterconfigs.sriovfec.intel.com" "sriovfecnodeconfigs.sriovfec.intel.com"]),ClusterRole: (["sriov-fec-metrics-reader"]),
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • sriov-fec.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • sriov-fec.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
vsphere-kubernetes-drivers-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • vsphere-kubernetes-drivers-operator.v0.1.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
eamli-operator -
    - -
-
-
    - -
  • candidate
  • - -
  • fast
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • eamli-operator.v0.8.12 - (label=v4.6,max=not set,channels=[candidate fast stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
cloudcasa-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • cloudcasa-operator.v2.2.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
citrix-ingress-controller-operator -
    - -
  • Error: Value : (citrix-ingress-controller-operator.v1.13.20) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixingresscontrollers.citrix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value citrix-ingress-controller-operator.v1.13.20: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixingresscontrollers.citrix.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • citrix-ingress-controller-operator.v1.18.5 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
portworx-certified -
    - -
-
-
    - -
  • stable
  • - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • portworx-operator.v1.6.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
hpe-ezmeral-csi-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • hpe-ezmeral-csi-operator.v1.0.8 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
carbonetes-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • carbonetes-operator.v1.0.5 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
simple-demo-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • simple-demo-operator.v0.0.4 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
percona-server-mongodb-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • percona-server-mongodb-operator.v1.10.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
openshiftartifactoryha-operator -
    - -
  • Error: Value : (artifactory-ha-operator.v1.1.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.0.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.0.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.13) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.13: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.14) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.14: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.10) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.10: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.11) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.11: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.12) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.12: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
  • Error: Value : (artifactory-ha-operator.v1.1.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value artifactory-ha-operator.v1.1.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftartifactoryhas.charts.helm.k8s.io"])
  • - -
-
-
    - -
  • stable
  • - -
  • alpha
  • - -
-
-
    - -
  • artifactory-ha-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.14 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • artifactory-ha-operator.v1.1.15 - (label=v4.5,v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.18 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.20 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • artifactory-ha-operator.v1.1.21 - (label=v4.5-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
federatorai-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • federatorai.v4.7.2-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nginx-ingress-operator -
    - -
  • Error: Value : (nginx-ingress-operator.v0.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nginx-ingress-operator.v0.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"])
  • - -
  • Error: Value : (nginx-ingress-operator.v0.0.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nginx-ingress-operator.v0.0.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"])
  • - -
  • Error: Value : (nginx-ingress-operator.v0.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nginx-ingress-operator.v0.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"])
  • - -
  • Error: Value : (nginx-ingress-operator.v0.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nginx-ingress-operator.v0.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"])
  • - -
  • Error: Value : (nginx-ingress-operator.v0.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nginx-ingress-operator.v0.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nginxingresscontrollers.k8s.nginx.org"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • nginx-ingress-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nginx-ingress-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nginx-ingress-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nginx-ingress-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • nginx-ingress-operator.v0.3.0 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nastel-navigator-operator-certified -
    - -
  • Error: Value : (nastel-navigator-operator.v1.100200.12) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100200.12: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100105.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100105.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100105.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100105.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v0.0.14) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v0.0.14: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v0.0.15) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v0.0.15: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v0.0.16) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v0.0.16: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100200.14) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100200.14: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100105.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100105.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100200.13) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100200.13: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-navigator-operator.v0.0.18) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v0.0.18: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100107.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100107.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]),ClusterRole: (["nastel-navigator-operator-metrics-reader"]),
  • - -
  • Error: Value : (nastel-navigator-operator.v1.100105.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v1.100105.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
  • Error: Value : (nastel-navigator-operator.v0.0.17) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value nastel-navigator-operator.v0.0.17: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nastelnavigators.navigator.nastel.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • nastel-navigator-operator.v0.0.14 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v0.0.15 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v0.0.16 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v0.0.17 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v0.0.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100105.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100105.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100105.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100105.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100107.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100200.12 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100200.13 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100200.14 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • nastel-navigator-operator.v1.100202.3 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100202.4 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • nastel-navigator-operator.v1.100202.5 - (label=v4.5-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
timemachine-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • timemachine-operator.v1.0.8 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
ovms-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
aws-event-sources-operator-certified -
    - -
  • Error: Value : (aws-sources-operator.v0.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aws-sources-operator.v0.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"])
  • - -
  • Error: Value : (aws-sources-operator.v0.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aws-sources-operator.v0.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"])
  • - -
  • Error: Value : (aws-sources-operator.v0.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aws-sources-operator.v0.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"])
  • - -
  • Error: Value : (aws-sources-operator.v0.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aws-sources-operator.v0.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["awseventsources.sources.triggermesh.com"])
  • - -
-
-
    - -
  • alpha
  • - -
  • beta
  • - -
-
-
    - -
  • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • aws-sources-operator.v0.4.0 - (label=v4.6-v4.8,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
percona-xtradb-cluster-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • percona-xtradb-cluster-operator.v1.9.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
gitlab-runner-operator -
    - -
  • Error: Value : (gitlab-runner-operator.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gitlab-runner-operator.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"])
  • - -
  • Error: Value : (gitlab-runner-operator.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gitlab-runner-operator.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"])
  • - -
  • Error: Value : (gitlab-runner-operator.v1.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value gitlab-runner-operator.v1.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runners.apps.gitlab.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • gitlab-runner-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • gitlab-runner-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • gitlab-runner-operator.v1.4.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
anzo-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
citrix-adc-istio-ingress-gateway-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • citrix-adc-istio-ingress-gateway-operator.v0.9.9 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
t8c-certified -
    - -
  • Error: Value : (t8c-operator.v8.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v8.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v42.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v42.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v8.2.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v8.2.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v42.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v42.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v8.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v8.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v7.22.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v7.22.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
  • Error: Value : (t8c-operator.v7.22.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value t8c-operator.v7.22.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xls.charts.helm.k8s.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • t8c-operator.v42.0.0 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v42.1.0 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v7.22.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v7.22.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • t8c-operator.v42.2.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v42.3.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v42.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • t8c-operator.v42.5.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
ogaye-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • ogaye-operator.v0.0.2 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
memcached-operator-ogaye -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • memcached-operator.v0.0.1 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nutanixcsioperator -
    - -
-
-
    - -
  • beta
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • nutanixcsioperator.v2.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
antrea-operator-for-kubernetes -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • antrea-operator-for-kubernetes.v0.0.1 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
runtime-component-operator-certified -
    - -
  • Error: Value : (runtime-component-operator.v0.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runtimecomponents.app.stacks"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value runtime-component-operator.v0.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["runtimecomponents.app.stacks"])
  • - -
-
-
    - -
  • beta
  • - -
  • beta2
  • - -
-
-
    - -
  • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • runtime-component.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
pmem-csi-operator-os -
    - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
ibm-spectrum-symphony-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • ibm-spectrum-symphony-operator.v1.1.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
aqua-operator-certified -
    - -
  • Error: Value : (aqua-operator.v6.0.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquakubeenforcers.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aqua-operator.v6.0.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquakubeenforcers.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"])
  • - -
  • Error: Value : (aqua-operator.v5.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aqua-operator.v5.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"])
  • - -
  • Error: Value : (aqua-operator.v1.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aqua-operator.v1.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"])
  • - -
  • Warning: Value aqua-operator.v6.2.21354: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquakubeenforcers.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"])
  • - -
  • Error: Value : (aqua-operator.v5.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquakubeenforcers.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value aqua-operator.v5.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["aquacsps.operator.aquasec.com" "aquadatabases.operator.aquasec.com" "aquaenforcers.operator.aquasec.com" "aquagateways.operator.aquasec.com" "aquakubeenforcers.operator.aquasec.com" "aquascanners.operator.aquasec.com" "aquaservers.operator.aquasec.com"])
  • - -
-
-
    - -
  • 6.0
  • - -
  • alpha
  • - -
  • latest
  • - -
  • 6.5
  • - -
  • 6.2
  • - -
  • 5.3
  • - -
-
-
    - -
  • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • aqua-operator.v5.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • aqua-operator.v5.3.0 - (label=v4.5,v4.6,max=4.8,channels=[5.3],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • aqua-operator.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • aqua-operator.v6.2.21354 - (label=v4.5-v4.8,max=4.8,channels=[6.2],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • aqua-operator.v6.5.21349 - (label=v4.5-v4.8,max=not set,channels=[6.5],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
cockroachdb-certified -
    - -
-
-
    - -
  • stable
  • - -
  • beta
  • - -
-
-
    - -
-
-
    - -
  • cockroach-operator.v2.3.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
iomesh-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • iomesh-operator.0.10.1-rc4 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
entando-k8s-operator -
    - -
-
-
    - -
  • beta
  • - -
  • stable
  • - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
  • entando-k8s-operator.v6.3.2-pr2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • entando-k8s-operator.v6.3.2-pr4 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
amcop-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • amcop-operator.v0.0.1 - (label=v4.6-v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
linstor-operator -
    - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
xcrypt-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • zts-xcrypt-operator.v0.0.17 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
tigera-operator -
    - -
  • Error: Value : (tigera-operator.v1.15.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.15.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.7) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.7: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.8) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.8: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.15.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.15.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.5.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.5.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.15.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.15.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.15.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.15.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.15.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.15.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.17.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.17.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "imagesets.operator.tigera.io" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.5.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.5.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.13.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.13.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
  • Error: Value : (tigera-operator.v1.7.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value tigera-operator.v1.7.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bgpconfigurations.crd.projectcalico.org" "bgppeers.crd.projectcalico.org" "blockaffinities.crd.projectcalico.org" "clusterinformations.crd.projectcalico.org" "felixconfigurations.crd.projectcalico.org" "globalnetworkpolicies.crd.projectcalico.org" "globalnetworksets.crd.projectcalico.org" "hostendpoints.crd.projectcalico.org" "ipamblocks.crd.projectcalico.org" "ipamconfigs.crd.projectcalico.org" "ipamhandles.crd.projectcalico.org" "ippools.crd.projectcalico.org" "kubecontrollersconfigurations.crd.projectcalico.org" "networkpolicies.crd.projectcalico.org" "networksets.crd.projectcalico.org" "installations.operator.tigera.io" "tigerastatuses.operator.tigera.io"])
  • - -
-
-
    - -
  • release-v1.15
  • - -
  • release-v1.20
  • - -
  • release-v1.13
  • - -
  • release-v1.17
  • - -
  • release-v1.23
  • - -
  • stable
  • - -
-
-
    - -
  • tigera-operator.v1.13.0 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.1 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.2 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.3 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.4 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.5 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.6 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.7 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.13.8 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.15.0 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.15],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.15.1 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.15],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.15.2 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.15],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.15.3 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.15],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.15.4 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.15],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.0 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.1 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.2 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.3 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.4 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.17.5 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.17],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.5.2 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.5.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.7.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • tigera-operator.v1.20.1 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.20.2 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.20.3 - (label=v4.5,max=not set,channels=[release-v1.20],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.20.4 - (label=v4.5,max=not set,channels=[release-v1.20],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
  • tigera-operator.v1.23.0 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • tigera-operator.v1.23.1 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • tigera-operator.v1.23.2 - (label=v4.6,max=not set,channels=[release-v1.23],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • tigera-operator.v1.23.3 - (label=v4.6,max=not set,channels=[release-v1.23],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
infinibox-operator-certified -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • infinibox-operator.v2.1.0-rc2 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • infinibox-operator.v2.1.0-rc3 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
n3000 -
    - -
  • Error: Value : (n3000.v1.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["n3000clusters.fpga.intel.com" "n3000nodes.fpga.intel.com"]),ClusterRole: (["n3000-metrics-reader"]), or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value n3000.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["n3000clusters.fpga.intel.com" "n3000nodes.fpga.intel.com"]),ClusterRole: (["n3000-metrics-reader"]),
  • - -
  • Warning: Value n3000.v1.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["n3000-metrics-reader"]),CRD: (["n3000clusters.fpga.intel.com" "n3000nodes.fpga.intel.com"]),
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • n3000.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • n3000.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
kubeturbo-certified -
    - -
  • Error: Value : (kubeturbo-operator.v7.22.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v7.22.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.1.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.1.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.1.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.1.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.0.6) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.0.6: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.0.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.0.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.1.2-1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.1.2-1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.0.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.0.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.3.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.3.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.2.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.2.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v8.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v8.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
  • Error: Value : (kubeturbo-operator.v7.22.9) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value kubeturbo-operator.v7.22.9: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubeturbos.charts.helm.k8s.io"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v7.22.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.1.2-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.2.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.3.2 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • kubeturbo-operator.v8.3.3 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.3.5 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.3.6 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.4.0 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.4.1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.4.2 - (label=v4.6-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • kubeturbo-operator.v8.4.3 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
f5-bigip-ctlr-operator -
    - -
-
-
    - -
  • beta
  • - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • f5-bigip-ctlr-operator.v1.9.0 - (label=v4.6-v4.9,max=not set,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
can-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • can-operator.v0.1.0 - (label=v4.6-v4.9,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
kubemq-operator-marketplace -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • kubemq-operator.v1.7.8 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
anzograph-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
storageos2 -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • storageosoperator.v2.5.0-beta.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
zabbix-operator-certified -
    - -
  • Error: Value : (zabbix-operator-certified.v0.0.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["zabbixagents.kubernetes.zabbix.com" "zabbixappliances.kubernetes.zabbix.com" "zabbixfulls.kubernetes.zabbix.com" "zabbixproxymysqls.kubernetes.zabbix.com" "zabbixproxysqlites.kubernetes.zabbix.com" "zabbixservers.kubernetes.zabbix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value zabbix-operator-certified.v0.0.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["zabbixagents.kubernetes.zabbix.com" "zabbixappliances.kubernetes.zabbix.com" "zabbixfulls.kubernetes.zabbix.com" "zabbixproxymysqls.kubernetes.zabbix.com" "zabbixproxysqlites.kubernetes.zabbix.com" "zabbixservers.kubernetes.zabbix.com"])
  • - -
  • Error: Value : (zabbix-operator-certified.v0.0.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["zabbixagents.kubernetes.zabbix.com" "zabbixappliances.kubernetes.zabbix.com" "zabbixfulls.kubernetes.zabbix.com" "zabbixproxymysqls.kubernetes.zabbix.com" "zabbixproxysqlites.kubernetes.zabbix.com" "zabbixservers.kubernetes.zabbix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value zabbix-operator-certified.v0.0.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["zabbixagents.kubernetes.zabbix.com" "zabbixappliances.kubernetes.zabbix.com" "zabbixfulls.kubernetes.zabbix.com" "zabbixproxymysqls.kubernetes.zabbix.com" "zabbixproxysqlites.kubernetes.zabbix.com" "zabbixservers.kubernetes.zabbix.com"])
  • - -
-
-
    - -
  • lts
  • - -
-
-
    - -
  • zabbix-operator-certified.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • zabbix-operator-certified.v0.0.3 - (label=v4.5,v4.6,max=not set,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
mongodb-atlas-kubernetes -
    - -
-
-
    - -
  • beta
  • - -
-
-
    - -
-
-
    - -
  • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
open-liberty-certified -
    - -
  • Error: Value : (open-liberty-operator.v0.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openlibertyapplications.openliberty.io" "openlibertydumps.openliberty.io" "openlibertytraces.openliberty.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value open-liberty-operator.v0.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openlibertyapplications.openliberty.io" "openlibertydumps.openliberty.io" "openlibertytraces.openliberty.io"])
  • - -
-
-
    - -
  • beta
  • - -
  • beta2
  • - -
-
-
    - -
  • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • open-liberty-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta2],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
ionir-operator -
    - -
  • Error: Value : (ionir-operator.v1.0.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["ionir-operator-metrics-reader"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value ionir-operator.v1.0.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for ClusterRole: (["ionir-operator-metrics-reader"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • ionir-operator.v1.0.6 - (label=v4.6-v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • ionir-operator.v1.0.7 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
citrix-cpx-with-ingress-controller-operator -
    - -
  • Error: Value : (citrix-cpx-with-ingress-controller-operator.v1.13.20) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxwithingresscontrollers.citrix.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value citrix-cpx-with-ingress-controller-operator.v1.13.20: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxwithingresscontrollers.citrix.com"])
  • - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
  • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • citrix-cpx-with-ingress-controller-operator.v1.18.5 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
seldon-deploy-operator -
    - -
  • Error: Value : (seldon-deploy-operator.v0.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeploys.machinelearning.seldon.io"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value seldon-deploy-operator.v0.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["seldondeploys.machinelearning.seldon.io"])
  • - -
-
-
    - -
  • alpha
  • - -
  • stable
  • - -
-
-
    - -
  • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
ccm-node-agent-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
instana-agent-operator -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • instana-agent-operator.v2.0.0 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v2.0.1 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v2.0.2 - (label=v4.5-v4.9,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • instana-agent-operator.v2.0.3 - (label=v4.5-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
nxrm-operator-certified -
    - -
-
-
    - -
  • stable
  • - -
-
-
    - -
-
-
    - -
  • nxrm-operator-certified.v3.37.1-1 - (label=v4.6-v4.9,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
conjur-follower-operator -
    - -
-
-
    - -
  • stable
  • - -
  • preview
  • - -
-
-
    - -
-
-
    - -
  • conjur-follower-operator.v2.0.2 - (label=v4.6-v4.9,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
crunchy-postgres-operator -
    - -
  • Error: Value : (postgresoperator.v4.6.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value postgresoperator.v4.6.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
  • - -
  • Error: Value : (postgresoperator.v4.7.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value postgresoperator.v4.7.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
  • - -
  • Error: Value : (postgresoperator.v4.5.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value postgresoperator.v4.5.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
  • - -
-
-
    - -
  • v5
  • - -
  • stable
  • - -
-
-
    - -
  • postgresoperator.v4.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • postgresoperator.v4.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
  • - -
  • postgresoperator.v4.7.3 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
  • - -
-
-
    - -
  • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • postgresoperator.v5.0.3 - (label=v4.6,max=not set,channels=[v5],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • postgresoperator.v5.0.4 - (label=v4.6-v4.9,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
joget-dx-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • joget-dx-openshift-operator.v0.0.20 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • joget-dx-openshift-operator.v0.0.21 - (label=v4.5,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • joget-dx-openshift-operator.v0.0.22 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
dynatrace-operator -
    - -
-
-
    - -
  • alpha
  • - -
-
-
    - -
-
-
    - -
  • dynatrace-operator.v0.2.2 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
mongodb-enterprise -
    - -
  • Error: Value : (mongodb-enterprise.v1.3.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.3.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.5.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.5.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.7.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.7.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.7.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.7.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.5.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.5.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.5.5) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.5.5: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.10.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.10.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v0.3.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodbreplicasets.mongodb.com" "mongodbshardedclusters.mongodb.com" "mongodbstandalones.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v0.3.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodbreplicasets.mongodb.com" "mongodbshardedclusters.mongodb.com" "mongodbstandalones.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.4.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.4.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.3.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.3.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.5.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.5.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.6.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.6.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v0.9.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodbreplicasets.mongodb.com" "mongodbshardedclusters.mongodb.com" "mongodbstandalones.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v0.9.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodbreplicasets.mongodb.com" "mongodbshardedclusters.mongodb.com" "mongodbstandalones.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.1.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.1.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.2.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.2.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.6.0) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.6.0: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.2.2) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.2.2: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.2.3) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.2.3: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.2.4) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.2.4: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
  • Error: Value : (mongodb-enterprise.v1.9.1) this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the APIs for this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"]) or provide compatible version(s) via the labels. (e.g. LABEL com.redhat.openshift.versions='4.6-4.8')
  • - -
  • Warning: Value mongodb-enterprise.v1.9.1: this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mongodb.mongodb.com" "mongodbusers.mongodb.com" "opsmanagers.mongodb.com"])
  • - -
-
-
    - -
  • stable
  • - -
-
-
    - -
  • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.4.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.5.3 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.5.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.6.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.7.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
  • mongodb-enterprise.v1.9.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
  • - -
-
-
    - -
  • mongodb-enterprise.v1.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
  • - -
-
-
-
- - - diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html b/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html similarity index 94% rename from testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html rename to testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html index 49e8a83c..7f844289 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-13.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.10_2022-01-25.html @@ -78,9 +78,9 @@

Experimental Grade Dashboard

Data from the image used
@@ -143,18 +143,18 @@
Grade
- sysdig-certified + cilium

COMPLY

COMPLY

@@ -163,54 +163,110 @@
Grade

NOT USED

-

USED

+

NOT USED

-

PASS

+

ERRORS AND WARNINGS

+ +Info +
+ +
+

ONLY WARNINGS

- +Info -
+ +Info +